using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Authorize; /// /// 列表展示字段输出. /// [SuppressSniffer] public class ListDisplayFieldOutput { /// /// 显示名称. /// public string label { get; set; } /// /// 字段名称. /// public string prop { get; set; } /// /// 是否显示. /// public bool visible { get; set; } }