namespace POCDistance.Models
{
    public class LocationModel
    {
        public string ZipCode { get; set; }
        public string City { get; set; }
        public string Latitude { get; set; }
        public string Longitude { get; set; }
        public string Country { get; set; }
        public string State { get; set; }


    }
}