namespace MediaBrowser.Model.QuickConnect
{
    /// 
    /// Quick connect state.
    /// 
    public enum QuickConnectState
    {
        /// 
        /// This feature has not been opted into and is unavailable until the server administrator chooses to opt-in.
        /// 
        Unavailable = 0,
        /// 
        /// The feature is enabled for use on the server but is not currently accepting connection requests.
        /// 
        Available = 1,
        /// 
        /// The feature is actively accepting connection requests.
        /// 
        Active = 2
    }
}