12 lines
322 B
C#
Raw Permalink Normal View History

2024-03-09 18:07:43 +04:00
namespace HotelDataModels.Models
{
public interface IRoomModel : IId
{
string RoomName { get; }
string RoomFrame { get; }
double RoomPrice { get; }
2024-03-30 22:21:51 +04:00
int? MealPlanId { get; }
2024-03-09 18:07:43 +04:00
int HeadwaiterId { get; }
public Dictionary<int, ILunchModel> RoomLunches { get; }
2024-03-09 18:07:43 +04:00
}
}