13 lines
312 B
C#
13 lines
312 B
C#
|
namespace BlueWest.Data.Geography
|
||
|
{
|
||
|
public partial class Coordinate
|
||
|
{
|
||
|
public Guid Key { get; set; }
|
||
|
public double Latitude { get; set; }
|
||
|
public double Longitude { get; set; }
|
||
|
public Country Country { get; set; }
|
||
|
public TimeSpan CreatedTime { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|