12 lines
348 B
C#
Raw Permalink Normal View History

2024-04-10 02:45:10 +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();
}
}