OpenAuth.Net/OpenAuth.App/Request/VerificationReq.cs

22 lines
584 B
C#
Raw Normal View History

2018-03-26 00:34:49 +08:00
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>
2018-03-30 17:35:18 +08:00
/// 驳回的步骤即驳回到的节点ID
2018-03-26 00:34:49 +08:00
/// </summary>
public string NodeRejectStep { get; set; }
}
}