using System; namespace MahTweets.Mobile.Core { public class Place { public string Id { get; set; } public string Name { get; set; } public string Address { get; set; } public string City { get; set; } public string State { get; set; } public Double Lat { get; set; } public Double Long { get; set; } public double Distance { get; set; } public PlaceType PlaceType { get; set; } } public class PlaceType { public string ID { get; set; } public string FullPathName { get; set; } public string NodeName { get; set; } public string IconUrl { get; set; } } }