PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/ViewModels/ReportSushiIngredientViewModel.cs
2023-03-10 18:23:51 +04:00

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