mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-24 18:04:55 +08:00
17 lines
420 B
C#
17 lines
420 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(FrmContentData, FrmContentParse, FrmData); }
|
|
}
|
|
}
|
|
}
|