namespace Day23; public class PathNode { private static int _count = 0; public int Id { get; private set; } = ++_count; public List Outgoing { get; } = new List(); public List Incoming { get; } = new List(); }