2024-05-14 14:26:33 +00:00
|
|
|
|
namespace ColdMint.scripts.levelGraphEditor;
|
|
|
|
|
|
|
|
|
|
public class ConnectionData
|
|
|
|
|
{
|
2024-05-15 13:52:07 +00:00
|
|
|
|
public string? FromId { get; set; }
|
|
|
|
|
public string? ToId { get; set; }
|
2024-05-14 14:26:33 +00:00
|
|
|
|
public int FromPort { get; set; }
|
|
|
|
|
public int ToPort { get; set; }
|
|
|
|
|
}
|