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