mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-27 00:08:02 +01:00
16 lines
336 B
C#
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; }
|
|
}
|
|
}
|