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

21 lines
520 B
C#
Raw Normal View History

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();
2024-03-25 00:39:31 +04:00
public List<ReportShopCarsViewModel> ShopCars
{
get;
set;
} = new();
}
}