From eda71069a44773378bfae120493aacead0f258ed Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 18 Feb 2022 18:36:10 +0000 Subject: [PATCH] Updated user model to allow for storing of departure and arrival points --- Models/UserModel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Models/UserModel.cs b/Models/UserModel.cs index 86860a2..09580ab 100644 --- a/Models/UserModel.cs +++ b/Models/UserModel.cs @@ -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