15 lines
343 B
C#
15 lines
343 B
C#
|
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; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|