using Spectre.Console.Rendering; namespace Spectre.Console { /// /// Represents a border. /// public abstract partial class BoxBorder { /// /// Gets the safe border for this border or null if none exist. /// public virtual BoxBorder? SafeBorder { get; } /// /// Gets the string representation of the specified border part. /// /// The part to get the character representation for. /// A character representation of the specified border part. public abstract string GetPart(BoxBorderPart part); } }