mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-07 14:18:07 +08:00
27 lines
680 B
C#
27 lines
680 B
C#
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.App.Response
|
|
{
|
|
public class FlowVerificationResp :FlowInstance
|
|
{
|
|
/// <summary>
|
|
/// 预览表单数据
|
|
/// </summary>
|
|
/// <value>The FRM data HTML.</value>
|
|
public string FrmPreviewHtml
|
|
{
|
|
get { return FormUtil.Preview(this); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 下个节点的执行权限方式
|
|
/// </summary>
|
|
public string NextNodeDesignateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前节点的可写表单Id
|
|
/// </summary>
|
|
public string[] CanWriteFormItemIds { get; set; }
|
|
}
|
|
}
|