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; } } }