Route request being made (Needs polling)
This commit is contained in:
18
Models/JSON/RouteRequest.cs
Normal file
18
Models/JSON/RouteRequest.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace EFB.Models.JSON
|
||||
{
|
||||
public class RouteRequest
|
||||
{
|
||||
[JsonProperty]
|
||||
public string departure { get; set; }
|
||||
[JsonProperty]
|
||||
public string destination { get; set; }
|
||||
[JsonProperty]
|
||||
public uint preferredminlevel { get; set; }
|
||||
[JsonProperty]
|
||||
public uint preferredmaxlevel { get; set; }
|
||||
[JsonProperty]
|
||||
public string optimise { get; } = "preferred";
|
||||
}
|
||||
}
|
@ -13,7 +13,9 @@ namespace EFB.Models
|
||||
|
||||
Route only becomes populated after route is recieved from autorouter API
|
||||
*/
|
||||
public WaypointModel Departure { get; init; } = null;
|
||||
public string RouteID { get; init; }
|
||||
|
||||
public WaypointModel Departure { get; set; } = null;
|
||||
public WaypointModel Arrival { get; set; } = null;
|
||||
public IWaypoint Current { get; set; } = null;
|
||||
public uint Cruise { get; set; } = 0;
|
||||
|
@ -10,7 +10,7 @@ namespace EFB.Models
|
||||
/*
|
||||
Auto Router API Token Model
|
||||
*/
|
||||
public string Token { get; init; }
|
||||
public string TokenValue { get; init; }
|
||||
public DateTime Expiration { get; init; }
|
||||
|
||||
public bool IsExpired(){
|
||||
|
Reference in New Issue
Block a user