18 lines
428 B
C#
18 lines
428 B
C#
|
using GiftShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace GiftShopBusinessLogic.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();
|
|||
|
}
|
|||
|
}
|