PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

15 lines
438 B
C#
Raw Normal View History

2023-03-10 16:43:19 +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();
public List<ReportShopSushiViewModel> ShopListSushi { get; set; } = new();
2023-03-10 16:43:19 +04:00
}
}