12 lines
348 B
C#
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();
|
|
|
|
}
|
|
}
|