8 lines
265 B
C#
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; } = [];
|
|
} |