using Chernobyl.Collections.Generic.Event;
namespace Chernobyl.Collections.Generic.Graph
{
///
/// A basic implementation of an .
///
public class Node : INode
{
///
/// Initializes a new instance of the class.
///
public Node()
{
Connections = new DecoratingEventCollection(new NodeConnections(this));
}
///
/// The other vertices in the network that this vertex is
/// connected to.
///
public IEventCollection Connections { get; private set; }
}
}