PIbd-23_Kharlamov_A.A._Food.../FoodOrders/AbstractFoodOrdersContracts/ViewModels/ReportDishComponentViewModel.cs

16 lines
421 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFoodOrdersContracts.ViewModels
{
public class ReportDishComponentViewModel
{
2023-04-16 21:50:35 +04:00
public string DishName { get; set; } = string.Empty;
public int TotalCount { get; set; }
2023-04-16 21:50:35 +04:00
public List<(string Component, int Count)> Components { get; set; } = new();
}
}