2023-05-25 22:31:46 +04:00
|
|
|
|
using CarServiceContracts.ViewModels;
|
|
|
|
|
|
2023-05-26 02:11:24 +04:00
|
|
|
|
namespace CarServiceBusinessLogic.OfficePackage.HelperModels
|
2023-05-25 22:31:46 +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<ReportWorksWithPaymentsViewModel> Payments { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|