12 lines
341 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;
2023-03-14 10:12:32 +04:00
public List<ReportSushiComponentViewModel> Sushi{ get; set; } = new();
2023-03-12 20:49:40 +04:00
}
}