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 ingredienti { get; set; } public string fonte { get; set; } } }