11 lines
287 B
C#
11 lines
287 B
C#
|
namespace SushiBarContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportSushisComponentViewModel
|
|||
|
{
|
|||
|
public string ComponentName { get; set; } = string.Empty;
|
|||
|
public int TotalCount { get; set; }
|
|||
|
public List<Tuple<string, int>> Sushis { get; set; } = new();
|
|||
|
|
|||
|
}
|
|||
|
}
|