11 lines
234 B
C#
11 lines
234 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace s8n_runtime.ViewModels;
|
|||
|
|
|
|||
|
|
public class WorkflowNodeData
|
|||
|
|
{
|
|||
|
|
public string? Label { get; set; }
|
|||
|
|
|
|||
|
|
[JsonExtensionData]
|
|||
|
|
public Dictionary<string, object?>? Extra { get; set; }
|
|||
|
|
}
|