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