Files
Sharp8N-Runtime/s8n-runtime/IWorkflowRuntimeNode.cs

9 lines
186 B
C#
Raw Normal View History

2025-12-24 21:26:35 +03:00
namespace s8n_runtime;
public interface IWorkflowRuntimeNode
{
string Id { get; set; }
RuntimeStatus Status { get; set; }
Dictionary<string, object?>? State { get; set; }
}