2020-10-26 18:15:27 +01:00

14 lines
286 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; }
}
}