reorganize
All checks were successful
publish-nuget / checkout-code (push) Successful in 6s
publish-nuget / build-and-publish (push) Successful in 17s

This commit is contained in:
2026-01-01 03:35:38 +03:00
parent 509b2e4aa1
commit 5c44ebf452
31 changed files with 9 additions and 342 deletions

View File

@@ -0,0 +1,17 @@
namespace s8n_runtime.ViewModels;
public class WorkflowNode
{
public string Id { get; set; } = null!;
public string? ParentId { get; set; }
public WorkflowPoint Position { get; set; }
public float Width { get; set; }
public float Height { get; set; }
public string Type { get; set; } = "default";
public string? Class { get; set; }
public string? Style { get; set; }
public WorkflowNodeData? Data { get; set; }
}