PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

12 lines
363 B
C#
Raw Normal View History

2024-03-15 00:47:16 +04:00
using PizzeriaContracts.ViewModels;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
2024-03-15 02:21:13 +04:00
public class ExcelInfo : IDocument
2024-03-15 00:47:16 +04:00
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportPizzaComponentViewModel> PizzaComponents { get; set; } = new();
}
}