10 lines
300 B
C#
10 lines
300 B
C#
namespace PizzeriaContracts.ViewModels
|
|
{
|
|
public class ReportPizzaComponentViewModel
|
|
{
|
|
public string PizzaName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<(string componentName, int count)> Components { get; set; } = new();
|
|
}
|
|
}
|