mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-16 13:09:35 +08:00
22 lines
558 B
C#
22 lines
558 B
C#
![]() |
namespace OpenAuth.App.Request
|
|||
|
{
|
|||
|
public class VerificationReq
|
|||
|
{
|
|||
|
public string FlowInstanceId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 1:同意;2:不同意;3:驳回
|
|||
|
/// </summary>
|
|||
|
public string VerificationFinally { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 审核意见
|
|||
|
/// </summary>
|
|||
|
public string VerificationOpinion { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 驳回的步骤
|
|||
|
/// </summary>
|
|||
|
public string NodeRejectStep { get; set; }
|
|||
|
}
|
|||
|
}
|