19 lines
499 B
C#
19 lines
499 B
C#
using ComputerHardwareContracts.ViewModels;
|
|
|
|
namespace ComputerHardwareContracts.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<ReportComponentsViewModel> ReportComponents { get; set; } = new();
|
|
|
|
public List<ReportPurchaseViewModel> ReportPurchases { get; set; } = new();
|
|
}
|
|
} |