initial copy
This commit is contained in:
15
s8n-runtime/ViewModels/WorkflowEdge.cs
Normal file
15
s8n-runtime/ViewModels/WorkflowEdge.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user