2024-04-11 20:38:51 +04:00
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportSushiComponentViewModel
|
|
|
|
|
{
|
2024-04-25 23:32:23 +04:00
|
|
|
|
public string SushiName { get; set; } = string.Empty;
|
2024-04-11 20:38:51 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-04-25 23:32:23 +04:00
|
|
|
|
public List<(string Component, int Count)> Components { get; set; } = new();
|
2024-04-11 20:38:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|