mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-09 02:44:44 +08:00
修改部分文件结构,完善第三方登陆功能
This commit is contained in:
37
OpenAuth.App/SSO/AppInfo.cs
Normal file
37
OpenAuth.App/SSO/AppInfo.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user