mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-24 04:02:50 +08:00
14 lines
286 B
C#
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; }
|
|
}
|
|
}
|