From 334ad6bce560aae87988db940ecc9c4fdb42da8e Mon Sep 17 00:00:00 2001 From: Luke Else Date: Mon, 31 Jan 2022 12:10:06 +0000 Subject: [PATCH] Altered user Model to allow for pure string value as oposed to object --- Models/UserModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/UserModel.cs b/Models/UserModel.cs index f8179dd..2e33453 100644 --- a/Models/UserModel.cs +++ b/Models/UserModel.cs @@ -21,7 +21,7 @@ namespace EFB.Models public TokenModel UserToken { get; set; } = null; //Contains the most recent route generated by the user through the App - public RouteModel Route { get; set; } = null; + public string Route { get; set; } public TokenModel RouteToken { get; set; } = null; //Contains the most recently stored position of the user in the simulator