15 lines
521 B
C#
15 lines
521 B
C#
|
namespace HotelContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportLunchesViewModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string RoomName { get; set; } = string.Empty;
|
|||
|
public string NameHall { get; set; } = string.Empty;
|
|||
|
public DateTime? BookingDate { get; set; }
|
|||
|
public string LunchName { get; set; } = string.Empty;
|
|||
|
public double LunchPrice { get; set; }
|
|||
|
public double RoomPrice { get; set; }
|
|||
|
public string RoomFrame { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|