ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs

16 lines
420 B
C#
Raw Normal View History

2024-04-11 22:16:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-11 23:04:23 +04:00
namespace ConfectioneryContracts.ViewModels
2024-04-11 22:16:06 +04:00
{
public class ReportPastryComponentViewModel
{
2024-04-25 23:22:35 +04:00
public string PastryName { get; set; } = string.Empty;
2024-04-11 22:16:06 +04:00
public int TotalCount { get; set; }
2024-04-25 23:22:35 +04:00
public List<(string Component, int Count)> Components { get; set; } = new();
2024-04-11 22:16:06 +04:00
}
}