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 Parameters { get; set; } = []; public Dictionary Inputs { get; set; } = []; public Dictionary Outputs { get; set; } = []; }