PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarContracts/ViewModels/ReportSushiComponentViewModel.cs

10 lines
285 B
C#
Raw Normal View History

2023-03-12 20:49:40 +04:00
namespace SushiBarContracts.ViewModels
{
public class ReportSushiComponentViewModel
{
2023-03-14 10:12:32 +04:00
public string SushiName { get; set; } = string.Empty;
2023-03-12 20:49:40 +04:00
public int TotalCount { get; set; }
2023-03-14 10:12:32 +04:00
public List<Tuple<string, int>> Components { get; set; } = new();
2023-03-12 20:49:40 +04:00
}
}