14 lines
439 B
C#
14 lines
439 B
C#
namespace PizzaExpress.Models
|
|
{
|
|
public 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;
|
|
}
|
|
}
|