mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-29 10:49:38 +08:00
17 lines
384 B
C#
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); }
|
|
}
|
|
}
|
|
}
|