using Spectre.Console.Rendering; namespace Spectre.Console { /// /// Represents tree guide lines. /// public abstract partial class TreeGuide { /// /// Gets the safe guide lines or null if none exist. /// public virtual TreeGuide? SafeTreeGuide { get; } /// /// Get the set of characters used to render the corresponding . /// /// The part of the tree to get rendering string for. /// Rendering string for the tree part. public abstract string GetPart(TreeGuidePart part); } }