using JNPF.DependencyInjection; namespace JNPF.VisualDev.Engine; /// /// 配置属性模型. /// [SuppressSniffer] public class PropsBeanModel { /// /// 是否多选. /// public bool multiple { get; set; } /// /// 指定选项标签为选项对象的某个属性值. /// public string label { get; set; } /// /// 指定选项的值为选项对象的某个属性值. /// public string value { get; set; } /// /// 指定选项的子选项为选项对象的某个属性值. /// public string children { get; set; } }