2023-04-07 11:09:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportHeadwaiterBindingModel
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
2023-05-18 18:09:59 +04:00
|
|
|
|
public string RoomName { get; set; } = string.Empty;
|
|
|
|
|
public List<int>? Ids { get; set; }
|
2023-04-07 11:09:51 +04:00
|
|
|
|
public int HeadwaiterId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|