Aggiunta campo "Note"

This commit is contained in:
2025-12-04 09:22:47 +01:00
parent cf175649a0
commit 64fa9e1823

View File

@@ -5,5 +5,6 @@
public int Id { get; set; } public int Id { get; set; }
public string Nome { get; set; } = string.Empty; public string Nome { get; set; } = string.Empty;
public decimal Prezzo { get; set; } public decimal Prezzo { get; set; }
public string Note { get; set; } = string.Empty;
} }
} }