summaryrefslogtreecommitdiff
path: root/Models/UserAccount.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Models/UserAccount.cs')
-rw-r--r--Models/UserAccount.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Models/UserAccount.cs b/Models/UserAccount.cs
new file mode 100644
index 0000000..54baac5
--- /dev/null
+++ b/Models/UserAccount.cs
@@ -0,0 +1,9 @@
+using System.ComponentModel.DataAnnotations;
+using Microsoft.AspNetCore.Identity;
+
+namespace BackendPIA.Models {
+ public class UserAccount : IdentityUser {
+ [StringLength(64)]
+ public string? SessionToken { get; set; }
+ }
+} \ No newline at end of file