mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 21:56:39 +00:00
13 lines
354 B
C#
13 lines
354 B
C#
namespace SatelliteProvider.Common.DTO;
|
|
|
|
public class RoutePointDto
|
|
{
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
public string PointType { get; set; } = string.Empty;
|
|
public int SequenceNumber { get; set; }
|
|
public int SegmentIndex { get; set; }
|
|
public double? DistanceFromPrevious { get; set; }
|
|
}
|
|
|