using System.Collections.Generic; namespace Spectre.Console { /// /// Represents something that has tree nodes. /// public interface IHasTreeNodes { /// /// Gets the tree's child nodes. /// List Nodes { get; } } }