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

21 lines
520 B
C#

using AutomobilePlantContracts.ViewModels;
namespace AutomobilePlantBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportCarComponentViewModel> CarComponents
{
get;
set;
} = new();
public List<ReportShopCarsViewModel> ShopCars
{
get;
set;
} = new();
}
}