Add missing Pending state to ActivityStatus enum (#6856)

This commit is contained in:
Sipke Schoorstra 2025-08-19 19:44:14 +02:00 committed by GitHub
parent 6363ee84c4
commit 3e5374bced
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>