2023-03-24 21:34:28 +04:00
|
|
|
|
namespace PizzeriaContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportPizzaComponentViewModel
|
|
|
|
|
{
|
2023-03-28 10:45:31 +04:00
|
|
|
|
public string PizzaName { get; set; } = string.Empty;
|
2023-03-24 21:34:28 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2023-03-28 10:45:31 +04:00
|
|
|
|
public List<(string componentName, int count)> Components { get; set; } = new();
|
2023-03-24 21:34:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|