2023-03-12 20:49:40 +04:00
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels
|
|
|
|
|
{
|
|
|
|
|
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();
|
2023-04-11 11:12:55 +04:00
|
|
|
|
public List<ReportOrderGroupViewModel> GroupOrders { get; set; } = new();
|
2023-03-12 20:49:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|