2023-03-11 13:27:16 +04:00
|
|
|
|
using LawFirmContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-03-11 14:11:03 +04:00
|
|
|
|
public List<ReportDocumentBlankViewModel> DocumentBlanks { get; set; } = new();
|
2023-03-26 21:38:36 +04:00
|
|
|
|
public List<ReportShopDocumentsViewModel> ShopDocuments { get; set; } = new();
|
2023-03-11 13:27:16 +04:00
|
|
|
|
}
|
|
|
|
|
}
|