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

13 lines
354 B
C#
Raw Normal View History

2024-04-03 20:34:51 +04:00
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();
}
}