12 lines
301 B
C#
12 lines
301 B
C#
|
namespace SushiBarContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportSushiIngredientViewModel
|
|||
|
{
|
|||
|
public string SushiName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int TotalCount { get; set; }
|
|||
|
|
|||
|
public List<(string Ingredient, int Count)> Ingredients { get; set; } = new();
|
|||
|
}
|
|||
|
}
|