修改部分文件结构,完善第三方登陆功能

This commit is contained in:
yubaolee
2016-07-12 12:28:54 +08:00
parent 994ab81ebb
commit 5f08a59f27
45 changed files with 10078 additions and 246 deletions

View File

@@ -0,0 +1,37 @@
// ***********************************************************************
// Assembly : SmartSSO
// Author : yubaolee
// Created : 06-08-2016
//
// Last Modified By : yubaolee
// Last Modified On : 07-06-2016
// Contact :
// File: AppInfo.cs
// ***********************************************************************
using System;
namespace OpenAuth.App.SSO
{
/// <summary>
/// 应用程序信息
/// </summary>
public class AppInfo
{
public string AppKey { get; set; }
public string AppSecret { get; set; }
public string Title { get; set; }
public string Remark { get; set; }
public string Icon { get; set; }
public string ReturnUrl { get; set; }
public bool IsEnable { get; set; }
public DateTime CreateTime { get; set; }
}
}