2023-03-13 23:04:34 +04:00
|
|
|
|
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();
|
|
|
|
|
}
|
2023-03-13 23:04:34 +04:00
|
|
|
|
|
|
|
|
|
}
|