diff --git a/PizzaExpress/Models/Pizza.cs b/PizzaExpress/Models/Pizza.cs index 2f5cf64..af74c16 100644 --- a/PizzaExpress/Models/Pizza.cs +++ b/PizzaExpress/Models/Pizza.cs @@ -5,6 +5,9 @@ public int Id { get; set; } public string Nome { get; set; } = string.Empty; public decimal Prezzo { get; set; } + public string Categoria { get; set; } = string.Empty; public string Note { get; set; } = string.Empty; + public int Tavolo { get; set; } + public string Stato { get; set; } = string.Empty; } }