PIbd-21_Bakalskaya_E.D._Sus.../SushiBarBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

17 lines
393 B
C#
Raw Normal View History

using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportSushisComponentViewModel> SushiComponents
{
get;
set;
} = new();
}
}