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