PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs

16 lines
414 B
C#
Raw Normal View History

2023-03-28 00:43:46 +04:00
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<(string Pastry, int Count)> Pastries { get; set; } = new();
}
}