2024-04-11 20:38:51 +04:00
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
2024-04-11 20:52:16 +04:00
|
|
|
|
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
2024-04-11 20:38:51 +04:00
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|