23 lines
535 B
C#
23 lines
535 B
C#
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace NodePipeline.Configuration.Abstractions.Models.Edit;
|
|
|
|
public class EditorInputPort
|
|
{
|
|
/// <summary>
|
|
/// Input port name
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Input port human-friendly name
|
|
/// </summary>
|
|
public string? Label { get; set; }
|
|
|
|
/// <summary>
|
|
/// Port connection
|
|
/// </summary>
|
|
public string? Source { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
} |