2022-09-11 20:45:26 +03:00
|
|
|
using System;
|
|
|
|
|
2022-08-22 00:14:50 +03:00
|
|
|
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; }
|
2022-09-19 05:50:15 +03:00
|
|
|
public long CreatedTime { get; set; }
|
2022-08-22 00:14:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|