16 lines
388 B
C#
16 lines
388 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace RepoTools.BuildGraph
|
|
{
|
|
[DebuggerDisplay("{Repository.Name}")]
|
|
public class GraphNode
|
|
{
|
|
public Repository Repository { get; set; }
|
|
|
|
public ISet<GraphNode> Incoming { get; } = new HashSet<GraphNode>();
|
|
|
|
public ISet<GraphNode> Outgoing { get; } = new HashSet<GraphNode>();
|
|
}
|
|
}
|