Arkadiy Radaev d0874b7c11 res 4 hard
2024-05-18 18:05:46 +04:00

16 lines
390 B
C#

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