aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/General/LoggedInUser.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/General/LoggedInUser.cs')
-rw-r--r--src/Data/General/LoggedInUser.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Data/General/LoggedInUser.cs b/src/Data/General/LoggedInUser.cs
new file mode 100644
index 0000000..d278d3f
--- /dev/null
+++ b/src/Data/General/LoggedInUser.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace IOL.WebApi.Template.Data.General
+{
+ public class LoggedInUser
+ {
+ public Guid Id { get; set; }
+ public string Username { get; set; }
+ }
+}