PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2023-03-24 21:34:19 +04:00

12 lines
422 B
C#

using PizzeriaContracts.ViewModels;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportOrdersViewModel> Orders { get; set; } = new();
}
}