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
|
|
|
|
|
{
|
2023-04-24 15:29:03 +04:00
|
|
|
|
public string PastryName { get; set; } = string.Empty;
|
2023-03-28 00:43:46 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2023-04-24 15:29:03 +04:00
|
|
|
|
public List<(string Component, int Count)> Components { get; set; } = new();
|
2023-03-28 00:43:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|