summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Tables/Session.cs
diff options
context:
space:
mode:
Diffstat (limited to 'api/WhatApi/Tables/Session.cs')
-rw-r--r--api/WhatApi/Tables/Session.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/api/WhatApi/Tables/Session.cs b/api/WhatApi/Tables/Session.cs
new file mode 100644
index 0000000..a0affa8
--- /dev/null
+++ b/api/WhatApi/Tables/Session.cs
@@ -0,0 +1,10 @@
+namespace WhatApi.Tables;
+
+public class Session
+{
+ public Guid Id { get; set; }
+ public string Token { get; set; }
+ public DateTime Created { get; set; }
+ public DateTime? Expires { get; set; }
+ public User User { get; set; }
+} \ No newline at end of file