PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
2024-04-10 02:45:10 +04:00

12 lines
348 B
C#

using PizzeriaContracts.ViewModels;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportPizzaComponentViewModel> PizzaComponents {get;set;} = new();
}
}