PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelInfo.cs

12 lines
351 B
C#
Raw Normal View History

2023-03-12 20:49:40 +04:00
using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportSushiComponentViewModel> SushiComponents{ get; set; } = new();
}
}