mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 15:48:01 +08:00
19 lines
424 B
C#
19 lines
424 B
C#
![]() |
namespace OpenAuth.App.Request
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 召回、撤销流程
|
|||
|
/// </summary>
|
|||
|
public class RecallFlowInstanceReq
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 召回、撤销的流程实例ID
|
|||
|
/// </summary>
|
|||
|
public string FlowInstanceId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 撤回备注
|
|||
|
/// </summary>
|
|||
|
public string Description { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|