namespace Spectre.Console; /// /// Represents something that can be hidden. /// public interface IHasVisibility { /// /// Gets or sets a value indicating whether or not the object should /// be visible or not. /// bool IsVisible { get; set; } }