2021-12-22 08:51:17 -05:00

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; }
}