From efed3dc316101656640f641e1d3a2d35edf8fe8f Mon Sep 17 00:00:00 2001 From: AndreStork Date: Thu, 22 Jan 2026 08:38:56 +0100 Subject: [PATCH] Aggiunta modello Pizza --- Pizza.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Pizza.cs diff --git a/Pizza.cs b/Pizza.cs new file mode 100644 index 0000000..939add5 --- /dev/null +++ b/Pizza.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PizzaExpress_Client +{ + internal class Pizza + { + 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; + + } +}