16 lines
383 B
C#
16 lines
383 B
C#
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; }
|
|
}
|