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