using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Model; [SuppressSniffer] public class FormOperatesModel { /// /// 可读. /// public bool read { get; set; } /// /// 控件名. /// public string? name { get; set; } /// /// 控件id. /// public string? id { get; set; } /// /// 可写. /// public bool write { get; set; } /// /// 必填. /// public bool required { get; set; } /// /// 控件. /// public string? jnpfKey { get; set; } }