I have JSON url (http://www.pizzaboy.de/app/pizzaboy.json) i neeed show Name and Address1 and City in listview
class Weather
{
public string Name { get; set; }
public string Address1 { get; set; }
public int Zip { get; set; }
public string City { get; set; }
public string Phone { get; set; }
public float Lat { get; set; }
public float Lon { get; set; }
public string Link { get; set; }
}
please help me