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,
///
/// The feature is enabled for use on the server but is not currently accepting connection requests.
///
Available,
///
/// The feature is actively accepting connection requests.
///
Active
}
}