Files
Sharp8N-Runtime/s8n-runtime/ViewModels/WorkflowEdge.cs

16 lines
383 B
C#
Raw Normal View History

2025-12-24 21:26:35 +03:00
namespace s8n_runtime.ViewModels;
public class WorkflowEdge
{
public required string Id { get; set; }
public required string Source { get; set; }
public required string Target { get; set; }
public string? Type { get; set; }
public bool IsEvent { get; set; }
public string? SourceHandle { get; set; }
public string? TargetHandle { get; set; }
}