using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Module;
///
/// 功能下拉框输出.
///
[SuppressSniffer]
public class ModuleSelectorOutput : TreeModel
{
///
/// 菜单名称.
///
public string fullName { get; set; }
///
/// 图标.
///
public string icon { get; set; }
///
/// 类型.
///
public int type { get; set; }
///
/// 系统Id.
///
public string systemId { get; set; }
}