namespace Spectre.Console; /// /// Represents text justification. /// public enum Justify { /// /// Left justified. /// Left = 0, /// /// Right justified. /// Right = 1, /// /// Centered. /// Center = 2, }