Changing login response to returning token

This commit is contained in:
kdeng00
2023-09-29 19:37:58 -04:00
parent 616bd97b64
commit 97ea7262b7
2 changed files with 11 additions and 3 deletions
+2
View File
@@ -9,5 +9,7 @@ public class Token
public string? AccessToken { get; set; }
[JsonProperty("issued")]
public DateTime? Issued { get; set; }
[JsonProperty("id")]
public string? UserId { get; set; }
#endregion
}