mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-24 20:22:51 +08:00
12 lines
242 B
C#
12 lines
242 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; }
|
|
} |