ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs
Данияр Аглиуллов 3d7c2ac7ac Базовые изменения
2023-03-01 16:42:58 +04:00

16 lines
410 B
C#

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