Add missing Pending state to ActivityStatus enum (#6856)
This commit is contained in:
parent
6363ee84c4
commit
3e5374bced
|
|
@ -5,21 +5,26 @@ namespace Elsa.Api.Client.Shared.Models;
|
|||
/// </summary>
|
||||
public enum ActivityStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// The activity is in the Pending state.
|
||||
/// </summary>
|
||||
Pending,
|
||||
|
||||
/// <summary>
|
||||
/// The activity is in the Running state. Note that event if an activity is running, it may not be executing.
|
||||
/// </summary>
|
||||
Running,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The activity is in the Completed state.
|
||||
/// </summary>
|
||||
Completed,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The activity is in the Canceled state.
|
||||
/// </summary>
|
||||
Canceled,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The activity is in the Faulted state.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue