15 lines
420 B
C#
Raw Normal View History

using LawFirmContracts.ViewModels;
namespace LawFirmBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2023-05-03 00:49:14 +04:00
public List<ReportDocumentBlankViewModel> DocumentBlanks { get; set; } = new();
public List<ReportShopDocumentViewModel> ShopDocuments { get; set; } = new();
}
}