2023-03-01 16:42:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
2023-03-02 03:15:42 +04:00
|
|
|
|
public class ReportShopPastrytViewModel
|
2023-03-01 16:42:58 +04:00
|
|
|
|
{
|
2023-03-02 03:15:42 +04:00
|
|
|
|
public string ShopName { get; set; } = string.Empty;
|
2023-03-01 16:42:58 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2023-03-02 03:15:42 +04:00
|
|
|
|
public List<Tuple<string, int>> Pastries { get; set; } = new();
|
|
|
|
|
public double Workload { get; set; }
|
2023-03-01 16:42:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|