Pibd-22_Morozov_V.S_Automob.../AutomobilePlant/AbstractAutoBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

17 lines
440 B
C#
Raw Normal View History

using AutomobilePlantContracts.ViewModel;
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();
}
}