OpenAuth.Net/OpenAuth.App/FlowInstance/Response/FlowVerificationResp.cs
yubaolee cf23d0025f 增加撤销与启动,详见:#I3ILBG
调整工程结构,采用模块化机制
2021-04-15 00:40:30 +08:00

17 lines
368 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); }
}
}
}