mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00
12 lines
248 B
C#
12 lines
248 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; }
|
|
} |