12 lines
337 B
C#
12 lines
337 B
C#
using Contracts.ViewModels;
|
|
|
|
namespace BusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class ExcelInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
//public List<ReportDressComponentViewModel> DressComponents { get; set; } = new();
|
|
}
|
|
}
|