2023-04-07 01:11:59 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.ViewModels
|
|
|
|
|
{
|
2023-05-18 18:09:59 +04:00
|
|
|
|
public class ReportDinnersViewModel
|
2023-04-07 01:11:59 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string RoomName { get; set; } = string.Empty;
|
2023-05-18 18:09:59 +04:00
|
|
|
|
public string NameHall { get; set; } = string.Empty;
|
|
|
|
|
public string DinnerName { get; set; } = string.Empty;
|
2023-04-07 01:24:54 +04:00
|
|
|
|
public double RoomPrice { get; set; }
|
2023-04-07 01:11:59 +04:00
|
|
|
|
public string RoomFrame { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|