using System.Text.Json.Serialization; using JNPF.Common.Security; namespace JNPF.VisualData.Entitys.Dto.Screen; /// /// 大屏下拉框输出. /// public class ScreenSelectorOuput : TreeModel { /// /// 名称. /// public string fullName { get; set; } /// /// 是否删除. /// [JsonIgnore] public int isDeleted { get; set; } }