using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tango.Portal.Models { public class SessionUser { public bool IsAuthenticated { get; set; } public String Name { get; set; } public bool IsTwineUser { get; set; } public string Email { get; set; } public string Organization { get; set; } public string FullName { get; set; } public DateTime Expires { get; set; } } }