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; } }