blob: a9ce649f045bf1ed9e239cd2297ee1177d6bea31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
}
}
|