mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-12-28 19:45:48 +08:00
Restructure solution a bit
This commit is contained in:
15
src/Spectre.Console/IExpandable.cs
Normal file
15
src/Spectre.Console/IExpandable.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Spectre.Console
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents something that is expandable.
|
||||
/// </summary>
|
||||
public interface IExpandable
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether or not the object should
|
||||
/// expand to the available space. If <c>false</c>, the object's
|
||||
/// width will be auto calculated.
|
||||
/// </summary>
|
||||
bool Expand { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user