PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs
VanyaAlekseev faff28c524 ух
2024-04-28 00:20:34 +04:00

18 lines
422 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 PastryName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}