namespace Spectre.Console; /// /// Represents something that is alignable. /// public interface IAlignable { /// /// Gets or sets the alignment. /// Justify? Alignment { get; set; } }