SushiBarBase/SushiBar/SushiBarContracts/ViewModels/ReportProductComponentViewModel.cs

10 lines
285 B
C#
Raw Normal View History

namespace SushiBarContracts.ViewModels
{
public class ReportSushiComponentViewModel
{
public string SushiName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}