12 lines
361 B
C#
12 lines
361 B
C#
|
using PlumbingRepairContracts.ViewModels;
|
|||
|
|
|||
|
namespace PlumbingRepairBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class PdfInfoOrdersByDate
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
public List<ReportOrderByDateViewModel> Orders { get; set; } = new();
|
|||
|
}
|
|||
|
}
|