2024-04-10 15:15:05 +04:00
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportPastryComponentViewModel
|
|
|
|
|
{
|
2024-04-24 05:46:48 +04:00
|
|
|
|
public string PastryName { get; set; } = string.Empty;
|
2024-04-10 15:15:05 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-04-24 05:46:48 +04:00
|
|
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
2024-04-10 15:15:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|