9 lines
186 B
C#
9 lines
186 B
C#
namespace s8n_runtime;
|
|
|
|
public interface IWorkflowRuntimeNode
|
|
{
|
|
string Id { get; set; }
|
|
RuntimeStatus Status { get; set; }
|
|
Dictionary<string, object?>? State { get; set; }
|
|
}
|