using System.Collections.Generic; using System.Diagnostics; namespace BuildGraph { [DebuggerDisplay("{Repository.Name}")] public class GraphNode { public Repository Repository { get; set; } public ISet Incoming { get; } = new HashSet(); public ISet Outgoing { get; } = new HashSet(); } }