namespace Day23; public class PathNode { public List<Tile> Tiles { get; } = new List<Tile>(); public List<PathNode> Outgoing { get; } = new List<PathNode>(); public List<PathNode> Incoming { get; } = new List<PathNode>(); }