添加项目文件。
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Systems.Entitys.Dto.Authorize;
|
||||
|
||||
/// <summary>
|
||||
/// 权限模块输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class AuthorizeModelInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目类型.
|
||||
/// </summary>
|
||||
public string itemType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对象类型.
|
||||
/// </summary>
|
||||
public string objectType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对象ID.
|
||||
/// </summary>
|
||||
public List<string> objectId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user