ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

13 lines
448 B
C#

using CarServiceContracts.ViewModels;
namespace BlacksmithWorkshopBusinessLogic.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<ReportWorksWithPaymentsViewModel> Payments { get; set; } = new();
}
}