namespace Spectre.Console; /// /// Represents something that has justification. /// public interface IHasJustification { /// /// Gets or sets the justification. /// Justify? Justification { get; set; } }