2024-03-27 08:49:49 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|