13 lines
164 B
C#
13 lines
164 B
C#
namespace s8n_runtime;
|
|
|
|
public enum RuntimeStatus
|
|
{
|
|
NotReady,
|
|
Skipped,
|
|
Started,
|
|
Stopped,
|
|
Executing,
|
|
Executed,
|
|
Error,
|
|
CriticalError
|
|
} |