using Chernobyl.Collections.Generic.Event; namespace Chernobyl.Collections.Generic.Graph { /// /// An interface for a type that is single vertex in a larger network. /// public interface INode { /// /// The other vertices in the network that this vertex is /// connected to. /// IEventCollection Connections { get; } } }