mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-16 13:09:35 +08:00
13 lines
291 B
C#
13 lines
291 B
C#
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.App.Response
|
|
{
|
|
public class FlowVerificationResp :FlowInstance
|
|
{
|
|
public string FrmDataHtml
|
|
{
|
|
get { return FormUtil.Preview(FrmContentData, FrmContentParse, FrmData); }
|
|
}
|
|
}
|
|
}
|