Files
Swarm/DysonNetwork.Shared/GeoIp/GeoPoint.cs
2025-09-07 14:57:44 +08:00

10 lines
272 B
C#

namespace DysonNetwork.Shared.GeoIp;
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; }
}