aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.Portal/Models/SessionUser.cs
blob: 83323b0add460bfab224332430422ee1861f1d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }
    }
}