ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/ViewModels/ReportShopPastrytViewModel.cs

17 lines
446 B
C#

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