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