mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-23 00:26:38 +00:00
route in progress, region stitching is disabled by default
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace SatelliteProvider.DataAccess.Models;
|
||||
|
||||
public class RoutePointEntity
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid RouteId { get; set; }
|
||||
public int SequenceNumber { get; set; }
|
||||
public double Latitude { get; set; }
|
||||
public double Longitude { get; set; }
|
||||
public string PointType { get; set; } = string.Empty;
|
||||
public int SegmentIndex { get; set; }
|
||||
public double? DistanceFromPrevious { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user