12 lines
176 B
C#
12 lines
176 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class NodePortDefinition
|
|
{
|
|
public string PortName = "Port";
|
|
|
|
public PortKind Kind = PortKind.Value;
|
|
|
|
public string DefaultValue = "";
|
|
}
|