OpenAuth.Net/OpenAuth.App/Response/FlowVerificationResp.cs
2020-10-22 14:59:36 +08:00

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