Implementazione funzione ingredienti per Server 1.0.1

This commit is contained in:
2026-02-26 09:33:42 +01:00
parent cb6c007480
commit 33be97e894
2 changed files with 42 additions and 2 deletions

15
RispostaIngredienti.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzaExpress_Client
{
internal class RispostaIngredienti
{
public string pizza { get; set; }
public List<string> ingredienti { get; set; }
public string fonte { get; set; }
}
}