mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
12 lines
243 B
C#
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; }
|
|
} |