New service discovery system

This commit is contained in:
2025-12-13 14:23:28 +08:00
parent 8642737a07
commit bc3d030a1e
43 changed files with 142 additions and 563 deletions

View File

@@ -0,0 +1,10 @@
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; }
}