PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaContracts/ViewModels/ShopPizzaViewModel.cs

9 lines
227 B
C#

namespace PizzeriaContracts.ViewModels
{
public class ShopPizzaViewModel
{
public ShopViewModel Shop { get; set; } = new();
public Dictionary<int, PizzaCount> ShopPizza { get; set; } = new();
}
}