namespace Spectre.Console
{
    /// 
    /// Determines interactivity support.
    /// 
    public enum InteractionSupport
    {
        /// 
        /// Interaction support should be
        /// detected by the system.
        /// 
        Detect = 0,
        /// 
        /// Interactivity is supported.
        /// 
        Yes = 1,
        /// 
        /// Interactivity is not supported.
        /// 
        No = 2,
    }
}