mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00

Closes #85 * Split Border into BoxBorder and TableBorder * Change how different table parts are composed * Add markdown table border
14 lines
307 B
C#
14 lines
307 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; }
|
|
}
|
|
}
|