Altered user model and updated controller to make Chart requests on load

This commit is contained in:
2022-02-09 19:08:56 +00:00
parent 94393e232c
commit 21aff4096f
2 changed files with 19 additions and 1 deletions

View File

@ -24,6 +24,10 @@ namespace EFB.Models
public string Route { get; set; }
public TokenModel RouteToken { get; set; } = null;
//Contains the Departure and Arrival Charts for the user's route
public ChartModel DepartureCharts { get; set; }
public ChartModel ArrivalCharts { get; set; }
//Contains the most recently stored position of the user in the simulator
public object SimPosition { get; set; } = null;