using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.DictionaryData; /// /// 数据字典下拉框输出. /// [SuppressSniffer] public class DictionaryDataSelectorOutput : TreeModel { /// /// 项目名称. /// public string fullName { get; set; } /// /// 图标. /// public string icon { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }