13 lines
354 B
C#
13 lines
354 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<ReportSushiIngredientViewModel> SushiIngredients { get; set; } = new();
|
|||
|
}
|
|||
|
}
|