17 lines
393 B
C#
17 lines
393 B
C#
|
using SushiBarContracts.ViewModels;
|
|||
|
|
|||
|
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class ExcelInfo
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
public List<ReportSushisComponentViewModel> SushiComponents
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
} = new();
|
|||
|
|
|||
|
}
|
|||
|
}
|