10 lines
248 B
C#
10 lines
248 B
C#
namespace NodePipeline.Configuration.Abstractions.Models.Execute;
|
|
|
|
/// <summary>
|
|
/// Port connection
|
|
/// </summary>
|
|
public class InputSource
|
|
{
|
|
public string NodeId { get; set; } = null!;
|
|
public string OutputName { get; set; } = null!;
|
|
} |