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

13 lines
361 B
C#

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