namespace Quiz.SiteBase
{
///
/// 站点常量
///
public class SiteContant
{
public struct CookieKey
{
///
/// 登录用户信息加密key
///
public const string UserKey = "sincere2015";
///
/// 登录用户信息
///
public const string UserInfo = "quiz";
///
/// 登录用户code
///
public const string UserCode = "openid";
}
}
}