ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2024-04-05 01:59:38 +04:00

14 lines
430 B
C#

using FishFactoryContracts.ViewModels;
namespace FishFactoryBusinessLogic.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();
}
}