9 lines
232 B
C#
9 lines
232 B
C#
namespace ColdMint.scripts.levelGraphEditor;
|
|
|
|
public class ConnectionData
|
|
{
|
|
public string? FromId { get; set; }
|
|
public string? ToId { get; set; }
|
|
public int FromPort { get; set; }
|
|
public int ToPort { get; set; }
|
|
} |