using OpenAuth.Repository.Domain; namespace OpenAuth.App.Response { public class FlowVerificationResp :FlowInstance { /// /// 预览表单数据 /// /// The FRM data HTML. public string FrmPreviewHtml { get { return FormUtil.Preview(this); } } /// /// 下个节点的执行权限方式 /// public string NextNodeDesignateType { get; set; } /// /// 当前节点的可写表单Id /// public string[] CanWriteFormItemIds { get; set; } } }