ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

13 lines
354 B
C#

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<ReportSushiIngredientViewModel> SushiIngredients { get; set; } = new();
}
}