Files
Sharp8N.Runtime/ViewModels/WorkflowEdge.cs
Vitali Semianiaka 5c44ebf452
All checks were successful
publish-nuget / checkout-code (push) Successful in 6s
publish-nuget / build-and-publish (push) Successful in 17s
reorganize
2026-01-01 03:35:38 +03:00

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; }
}