2024-03-24 10:59:44 +04:00
|
|
|
|
namespace HotelContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportLunchesViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string RoomName { get; set; } = string.Empty;
|
2024-05-03 23:07:11 +04:00
|
|
|
|
public double RoomPrice { get; set; }
|
|
|
|
|
public string ConferenceName { get; set; } = string.Empty;
|
|
|
|
|
public DateTime? StartDate { get; set; }
|
2024-03-24 10:59:44 +04:00
|
|
|
|
public string LunchName { get; set; } = string.Empty;
|
|
|
|
|
public double LunchPrice { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|