using System.Collections.Generic; namespace Spectre.Console { /// /// Represents something that has tree nodes. /// public interface IHasTreeNodes { /// /// Gets the children of this node. /// public List Children { get; } } }