2023-04-07 01:11:59 +04:00
|
|
|
|
using HotelContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class PdfInfoHeadwaiter
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateFrom { get; set; }
|
|
|
|
|
public DateTime DateTo { get; set; }
|
2023-05-18 18:09:59 +04:00
|
|
|
|
public List<ReportDinnersViewModel> Dinners { get; set; } = new();
|
2023-04-07 01:11:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|