2023-03-10 15:31:58 +04:00
|
|
|
|
using FoodOrdersContracts.ViewModels;
|
|
|
|
|
|
2023-03-24 16:31:56 +04:00
|
|
|
|
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel
|
2023-03-10 15:31:58 +04:00
|
|
|
|
{
|
|
|
|
|
public class ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public List<ReportDishComponentViewModel> DishComponents { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|