using System.Text.Json.Serialization; namespace SatelliteProvider.Common.DTO; public class RoutePoint { [JsonPropertyName("lat")] public double Latitude { get; set; } [JsonPropertyName("lon")] public double Longitude { get; set; } }