12 lines
352 B
C#
12 lines
352 B
C#
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> Works { get; set; } = new();
|
|
}
|
|
}
|