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 CarComponents { get; set; } = new(); public List ShopCars { get; set; } = new(); } }