14 lines
425 B
C#
14 lines
425 B
C#
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();
|
|
}
|
|
}
|