diff options
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/SessionUser.cs')
| -rw-r--r-- | Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/SessionUser.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/SessionUser.cs b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/SessionUser.cs new file mode 100644 index 000000000..a9ce649f0 --- /dev/null +++ b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/SessionUser.cs @@ -0,0 +1,13 @@ +namespace Tango.Portal.Chat.Web.Models +{ + public class SessionUser + { + public bool IsAuthenticated { get; set; } + public String Name { get; set; } = String.Empty; + public bool IsTwineUser { get; set; } + public string Email { get; set; } = string.Empty; + public string Organization { get; set; } = string.Empty; + public string FullName { get; set; } = string.Empty; + public DateTime Expires { get; set; } + } +} |
