namespace Spectre.Console { /// /// Represents something that has a border. /// public interface IHasBorder { /// /// Gets or sets a value indicating whether or not to use /// a "safe" border on legacy consoles that might not be able /// to render non-ASCII characters. /// bool UseSafeBorder { get; set; } /// /// Gets or sets the box style. /// public Style? BorderStyle { get; set; } } }