PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

15 lines
519 B
C#
Raw Normal View History

using AutomobilePlantContracts.ViewModels;
namespace AutomobilePlantBusinessLogic.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();
2024-03-25 00:39:31 +04:00
public List<ReportDateOrdersViewModel> DateOrders { get; set; } = new();
}
}