using SatelliteProvider.Common.Enums; namespace SatelliteProvider.Common.DTO; public class RoutePointDto { public double Latitude { get; set; } public double Longitude { get; set; } public RoutePointType PointType { get; set; } public int SequenceNumber { get; set; } public int SegmentIndex { get; set; } public double? DistanceFromPrevious { get; set; } }