Added Current Chart to user model

This commit is contained in:
Luke Else 2022-02-11 19:41:46 +00:00
parent dd2a367a58
commit 0c68d05af1

View File

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