Traveller/scripts/levelGraphEditor/ConnectionData.cs

9 lines
232 B
C#
Raw Normal View History

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; }
}