OpenAuth.Net/OpenAuth.WebApi/Areas/SSO/Models/AppInfo.cs
2016-07-08 11:28:38 +08:00

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; }
}
}