2023-04-11 11:12:55 +04:00

13 lines
407 B
C#

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> Sushi{ get; set; } = new();
public List<StoreViewModel> Stores { get; set; } = new();
}
}