PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

14 lines
389 B
C#
Raw Normal View History

2023-03-24 21:34:19 +04:00
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();
}
}