PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/ViewModels/ReportPizzaComponentViewModel.cs
2023-03-22 11:10:23 +03:00

16 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.ViewModels
{
public class ReportPizzaComponentViewModel
{
public string PizzaName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}