18 lines
486 B
C#
Raw Normal View History

using AbstractFoodOrdersContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFoodOrdersBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2023-04-16 21:50:35 +04:00
public List<ReportDishComponentViewModel> DishComponents { get; set; } = new();
}
}