Files
tnb.server/system/Tnb.Systems.Entitys/Dto/Permission/Role/RoleSelectorOutput.cs
2023-03-13 15:00:34 +08:00

26 lines
502 B
C#

using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Role;
/// <summary>
/// 角色下拉输出.
/// </summary>
[SuppressSniffer]
public class RoleSelectorOutput : TreeModel
{
/// <summary>
/// 名称.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 类型.
/// </summary>
public string type { get; set; }
/// <summary>
/// 编码.
/// </summary>
public string enCode { get; set; }
}