2020-10-26 18:15:27 +01:00

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; }
}
}