12 lines
340 B
C#

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; }
}
}