ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

12 lines
359 B
C#
Raw Normal View History

2024-04-05 01:59:38 +04:00
using FishFactoryContracts.ViewModels;
namespace FishFactoryBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportCannedComponentViewModel> CannedComponents { get; set; } = new();
}
}