2024-06-17 10:16:39 +04:00
|
|
|
|
namespace SushiBarContracts.ViewModels
|
2024-03-27 08:49:49 +04:00
|
|
|
|
{
|
|
|
|
|
public class ReportSushiComponentViewModel
|
|
|
|
|
{
|
2024-04-24 09:58:53 +04:00
|
|
|
|
public string SushiName { get; set; } = string.Empty;
|
2024-03-27 08:49:49 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-04-24 09:58:53 +04:00
|
|
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
2024-03-27 08:49:49 +04:00
|
|
|
|
}
|
|
|
|
|
}
|