namespace NodePipeline.Configuration.Yaml.Internal_Models; internal class YamlEditorPipelineConfig { public string Name { get; set; } = string.Empty; public string? Description { get; set; } public List Nodes { get; set; } = []; }