13 lines
537 B
C#
13 lines
537 B
C#
namespace NodePipeline.Configuration.Yaml.Internal_Models;
|
|
|
|
internal class YamlEditorNodeConfig
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
|
|
public Dictionary<string, YamlEditorParameterConfig?> Parameters { get; set; } = [];
|
|
public Dictionary<string, YamlEditorInputPort?> Inputs { get; set; } = [];
|
|
public Dictionary<string, YamlEditorOutputPort?> Outputs { get; set; } = [];
|
|
} |