namespace Spectre.Console; /// /// Represents something that is paddable. /// public interface IPaddable { /// /// Gets or sets the padding. /// public Padding? Padding { get; set; } }