🐛 Refactor to fix GeoIP
This commit is contained in:
10
DysonNetwork.Shared/GeoIp/GeoPoint.cs
Normal file
10
DysonNetwork.Shared/GeoIp/GeoPoint.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
Reference in New Issue
Block a user