using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DataInterFace;
///
/// 数据接口下拉框输出.
///
[SuppressSniffer]
public class DataInterfaceSelectorOutput : TreeModel
{
///
/// 分类id.
///
public string categoryId { get; set; }
///
/// 接口名.
///
public string fullName { get; set; }
///
/// 排序码.
///
public long? sortCode { get; set; }
}