mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
37 lines
872 B
C#
37 lines
872 B
C#
// ***********************************************************************
|
|
// 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.WebApi.Areas.SSO.Models
|
|
{
|
|
/// <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; }
|
|
}
|
|
} |