CourseWork_Hotel/Hotel/HotelContracts/ViewModels/ReportLunchesViewModel.cs

15 lines
521 B
C#
Raw Normal View History

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;
}
}