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