10 lines
285 B
C#
10 lines
285 B
C#
namespace PizzeriaContracts.ViewModels
|
|
{
|
|
public class ReportPizzaComponentViewModel
|
|
{
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<Tuple<string, int>> Pizzas { get; set; } = new();
|
|
}
|
|
}
|