namespace Spectre.Console.Rendering { /// /// Represents something that can be dirty. /// public interface IHasDirtyState { /// /// Gets a value indicating whether the object is dirty. /// bool IsDirty { get; } } }