Assignment for Location Calculation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
340 B

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