16 lines
417 B
C#
Raw Normal View History

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