18 lines
415 B
C#
Raw Normal View History

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;
public int TotalCount { get; set; }
2023-03-10 17:49:43 +04:00
public List<(string Component, int Count)> Components { get; set; } = new();
}
}