19 lines
435 B
C#
19 lines
435 B
C#
namespace NodePipeline.Configuration.Abstractions.Models.Edit;
|
|
|
|
/// <summary>
|
|
/// Node output port info
|
|
/// </summary>
|
|
public class EditorOutputPort
|
|
{
|
|
/// <summary>
|
|
/// Output port name
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Output port human-friendly name
|
|
/// </summary>
|
|
public string? Label { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
} |