2021-12-22 08:51:17 -05:00

12 lines
243 B
C#

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