17 lines
427 B
C#
Raw Normal View History

2024-04-05 10:20:47 +04:00
using ShipyardContracts.ViewModels;
namespace ShipyardBusinessLogic.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<ReportOrdersViewModel> Orders { get; set; } = new();
}
}