mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:26:39 +00:00
14 lines
257 B
C#
14 lines
257 B
C#
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; }
|
|
}
|
|
|