From 9ebc82fe625e7224996b114c55d6bc07f2caaac2 Mon Sep 17 00:00:00 2001 From: AndreStork Date: Thu, 15 Jan 2026 09:24:01 +0100 Subject: [PATCH] Aggiunta campi nel modello Pizza --- PizzaExpress/Models/Pizza.cs | 3 +++ 1 file changed, 3 insertions(+) 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; } }