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

12 lines
299 B
C#
Raw Normal View History

2023-03-10 16:43:19 +04:00
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();
}
}