2023-03-10 15:31:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FoodOrdersContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportDishComponentViewModel
|
|
|
|
|
{
|
2023-03-10 17:49:43 +04:00
|
|
|
|
public string DishName { get; set; } = string.Empty;
|
2023-03-10 15:31:58 +04:00
|
|
|
|
|
|
|
|
|
public int TotalCount { get; set; }
|
|
|
|
|
|
2023-03-10 17:49:43 +04:00
|
|
|
|
public List<(string Component, int Count)> Components { get; set; } = new();
|
2023-03-10 15:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|