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> IceCreams { get; set; } = new(); } }