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

8 lines
265 B
C#

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