PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

13 lines
362 B
C#
Raw Normal View History

2024-03-23 22:01:27 +04:00
using PlumbingRepairContracts.ViewModels;
namespace PlumbingRepairBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportWorkComponentViewModel> WorkComponents { get; set; } = new();
}
}