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

12 lines
301 B
C#
Raw Normal View History

2024-04-03 20:34:51 +04:00
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();
}
}