PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/ViewModels/ReportSushiIngredientViewModel.cs

12 lines
301 B
C#
Raw Normal View History

2023-03-10 16:43:19 +04:00
namespace SushiBarContracts.ViewModels
{
public class ReportSushiIngredientViewModel
{
2023-03-10 18:23:51 +04:00
public string SushiName { get; set; } = string.Empty;
2023-03-10 16:43:19 +04:00
public int TotalCount { get; set; }
2023-03-10 18:23:51 +04:00
public List<(string Ingredient, int Count)> Ingredients { get; set; } = new();
2023-03-10 16:43:19 +04:00
}
}