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

12 lines
258 B
C#

namespace Spectre.Console;
/// <summary>
/// Represents something that can overflow.
/// </summary>
public interface IOverflowable
{
/// <summary>
/// Gets or sets the text overflow strategy.
/// </summary>
Overflow? Overflow { get; set; }
}