2023-04-15 00:17:15 +04:00
|
|
|
|
using FurnitureAssemblyContracts.ViewModels;
|
|
|
|
|
|
2023-04-28 23:27:42 +04:00
|
|
|
|
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
|
2023-04-15 00:17:15 +04:00
|
|
|
|
{
|
|
|
|
|
public class ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public List<ReportFurnitureComponentViewModel> FurnitureComponents
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
|
|
|
|
}
|