ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/ViewModels/ReportSushiIngredientViewModel.cs

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();
}
}