PIbd21.LyovushkinaA.A.LawFirm/LawFirm/AbstractLawFirmBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

22 lines
528 B
C#
Raw Normal View History

2024-03-24 00:36:52 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractLawFirmContracts.ViewModels;
namespace AbstractLawFirmBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportDocumentComponentViewModel> DocumentComponents
{
get;
set;
} = new();
}
}