mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-30 17:58:01 +01:00
14 lines
285 B
C#
14 lines
285 B
C#
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Represents something that is alignable.
|
|
/// </summary>
|
|
public interface IAlignable
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the alignment.
|
|
/// </summary>
|
|
Justify? Alignment { get; set; }
|
|
}
|
|
}
|