PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopContracts/ViewModels/ReportIceCreamComponentViewModel.cs
gg12 darfren 4e70e593b6 пффф
2024-03-24 13:36:55 +04:00

17 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopContracts.ViewModels
{
public class ReportIceCreamComponentViewModel
{
public string IceCreamName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}