namespace Chernobyl.Collections.Generic.Hierarchy
{
///
/// The interface used to interact with a single node in a hierarchy.
///
/// The type that composes the upper (parent) and
/// lower levels (children) of the hierarchy.
public interface IHierarchal : IDescendant, IAncestor
{ }
}