mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 10:12:50 +08:00
14 lines
313 B
C#
14 lines
313 B
C#
namespace Spectre.Console.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Represents something that can be dirty.
|
|
/// </summary>
|
|
public interface IHasDirtyState
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether the object is dirty.
|
|
/// </summary>
|
|
bool IsDirty { get; }
|
|
}
|
|
}
|