12 lines
312 B
C#
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; }
|
|
} |