16 lines
405 B
C#
16 lines
405 B
C#
// ReSharper disable CollectionNeverUpdated.Global
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace NodePipeline.Configuration.Abstractions.Models.Edit;
|
|
|
|
public class EditorPipelineConfig
|
|
{
|
|
/// <summary>
|
|
/// Pipeline name (Id)
|
|
/// </summary>
|
|
public string Name { get; set; } = "";
|
|
|
|
public string? Description { get; set; }
|
|
public List<EditorNodeConfig> Nodes { get; set; } = [];
|
|
} |