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

9 lines
267 B
C#
Raw Normal View History

2025-12-24 21:26:35 +03:00
namespace s8n_runtime.ViewModels;
public record WorkflowNodeToolInfo(
string Icon, string? IconColor,
int Width, int Height, string Classes, string Styles,
string? Render, string? RenderEdit,
object? InitNode,
List<WorkflowNodeToolSlot>? Slots);