12 lines
299 B
C#
12 lines
299 B
C#
|
namespace SushiBarContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportSushiIngredientViewModel
|
|||
|
{
|
|||
|
public string IngredientName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int TotalCount { get; set; }
|
|||
|
|
|||
|
public List<(string Sushi, int Count)> ListSushi { get; set; } = new();
|
|||
|
}
|
|||
|
}
|