16 lines
343 B
C#
16 lines
343 B
C#
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; }
|
|
}
|
|
}
|