Files
Swarm/DysonNetwork.Shared/Geometry/GeoPoint.cs

10 lines
275 B
C#

namespace DysonNetwork.Shared.Geometry;
public class GeoPoint
{
public double? Latitude { get; set; }
public double? Longitude { get; set; }
public string? CountryCode { get; set; }
public string? Country { get; set; }
public string? City { get; set; }
}