PIbd-23_Leonteva_V._A._LawFirm/LawFirm/LawFirmBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

17 lines
463 B
C#
Raw Normal View History

2024-04-23 18:42:45 +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;
public List<ReportDocumentBlankViewModel> DocumentBlanks { get; set; } = new();
}
}