PIbd-21_TeryokhinAS_Bar_Base/Bar/BarContracts/ViewModels/ReportCocktailComponentViewModel.cs

17 lines
404 B
C#
Raw Normal View History

2024-04-27 15:00:40 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BarContracts.ViewModels
{
public class ReportCocktailComponentViewModel
{
public string CocktailName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}