mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-19 18:22:11 +08:00
转移.net core 3.1,为.NET 5做准备
This commit is contained in:
@@ -8,14 +8,16 @@
|
||||
// </autogenerated>
|
||||
//------------------------------------------------------------------------------
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using OpenAuth.Repository.Core;
|
||||
|
||||
namespace OpenAuth.Repository.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// 应用
|
||||
/// </summary>
|
||||
[Table("Application")]
|
||||
public partial class Application : Entity
|
||||
{
|
||||
public Application()
|
||||
@@ -31,30 +33,37 @@ namespace OpenAuth.Repository.Domain
|
||||
/// <summary>
|
||||
/// 应用名称
|
||||
/// </summary>
|
||||
[Description("应用名称")]
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
/// 应用密钥
|
||||
/// </summary>
|
||||
[Description("应用密钥")]
|
||||
public string AppSecret { get; set; }
|
||||
/// <summary>
|
||||
/// 应用描述
|
||||
/// </summary>
|
||||
[Description("应用描述")]
|
||||
public string Description { get; set; }
|
||||
/// <summary>
|
||||
/// 应用图标
|
||||
/// </summary>
|
||||
[Description("应用图标")]
|
||||
public string Icon { get; set; }
|
||||
/// <summary>
|
||||
/// 是否可用
|
||||
/// </summary>
|
||||
[Description("是否可用")]
|
||||
public bool Disable { get; set; }
|
||||
/// <summary>
|
||||
/// 创建日期
|
||||
/// </summary>
|
||||
[Description("创建日期")]
|
||||
public System.DateTime CreateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[Description("创建人")]
|
||||
public string CreateUser { get; set; }
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user