PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/ViewModels/ReportShopFlowerViewModel.cs
2024-04-04 11:38:58 +04:00

16 lines
396 B
C#

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