NodePipeline/NodePipeline.Configuration.Yaml/Internal Models/YamlEditorNodeConfig.cs
2026-01-02 20:55:25 +03:00

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; } = [];
}