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