2024-03-23 17:38:43 +04:00
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
|
|
|
{
|
2024-03-25 00:08:21 +04:00
|
|
|
|
public class ReportSushiComponentViewModel
|
2024-03-23 17:38:43 +04:00
|
|
|
|
{
|
2024-03-30 19:38:45 +04:00
|
|
|
|
public string SushiName { get; set; } = string.Empty;
|
2024-03-23 17:38:43 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-03-30 19:38:45 +04:00
|
|
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
2024-03-23 17:38:43 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|