mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-27 08:17:57 +01:00
14 lines
291 B
C#
14 lines
291 B
C#
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Represents something that has a box border.
|
|
/// </summary>
|
|
public interface IHasBoxBorder
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the box.
|
|
/// </summary>
|
|
public BoxBorder Border { get; set; }
|
|
}
|
|
}
|