Updated user model to allow for storing of departure and arrival points

This commit is contained in:
Luke Else 2022-02-18 18:36:10 +00:00
parent 8be3b0fa02
commit eda71069a4

View File

@ -21,7 +21,13 @@ namespace EFB.Models
public TokenModel UserToken { get; set; } = null;
//Contains the most recent route generated by the user through the App
public string Departure { get; set; }
public string Route { get; set; }
public string Arrival { get; set; }
public TokenModel RouteToken { get; set; } = null;
//Contains the Departure and Arrival Charts for the user's route