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

11 lines
273 B
C#

namespace NodePipeline.Configuration.Yaml.Internal_Models;
internal class YamlEditorOutputPort
{
/// <summary>
/// человекочитаемое имя
/// </summary>
public string? Label { get; set; }
public string? Description { get; set; }
}