PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopContracts/ViewModels/ReportShopIceCreamViewModel.cs
2024-03-24 18:46:06 +04:00

16 lines
402 B
C#

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