ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

17 lines
427 B
C#

using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.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();
}
}