9 lines
267 B
C#
9 lines
267 B
C#
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);
|