9 lines
227 B
C#
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();
|
|
}
|
|
}
|