Initial commit

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 05:21:08 +02:00
commit 0625cd4157
90 changed files with 3430 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
using LinqToDB.Mapping;
namespace Azaion.Flights.Database.Entities;
[Table("gps_corrections")]
public class GpsCorrection
{
[PrimaryKey]
[Column("id")]
public Guid Id { get; set; }
[Column("flight_id")]
public Guid FlightId { get; set; }
[Column("waypoint_id")]
public Guid WaypointId { get; set; }
[Column("original_gps")]
public string OriginalGps { get; set; } = string.Empty;
[Column("corrected_gps")]
public string CorrectedGps { get; set; } = string.Empty;
[Column("applied_at")]
public DateTime AppliedAt { get; set; }
}