namespace BankDataModels.Models { public interface IRoomModel : IId { string RoomName { get; } string RoomFrame { get; } double RoomPrice { get; } int ClientId { get; } int AdditionsId { get; } public Dictionary RoomCredits { get; } } }