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

12 lines
312 B
C#

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