namespace NodePipeline.Configuration.Abstractions.Models.Edit;
///
/// Node output port info
///
public class EditorOutputPort
{
///
/// Output port name
///
public string Name { get; set; } = null!;
///
/// Output port human-friendly name
///
public string? Label { get; set; }
public string? Description { get; set; }
}