CourseWork_Bank/Bank/BankDataModels/DataModels/IRoomModel.cs
2023-05-21 17:01:50 +04:00

14 lines
320 B
C#

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