NodePipeline/NodePipeline.Configuration.Abstractions/Models/Edit/EditorOutputPort.cs
2026-01-02 20:55:25 +03:00

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; }
}