10 lines
272 B
C#
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; }
|
|
} |