mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-25 04:32:51 +08:00
12 lines
245 B
C#
12 lines
245 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents something that has tree nodes.
|
|
/// </summary>
|
|
public interface IHasTreeNodes
|
|
{
|
|
/// <summary>
|
|
/// Gets the tree's child nodes.
|
|
/// </summary>
|
|
List<TreeNode> Nodes { get; }
|
|
} |