Files
spectre.console/src/Spectre.Console/IHasTreeNodes.cs
2021-01-03 23:28:55 +01:00

16 lines
336 B
C#

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