jellyfin/MediaBrowser.Model/QuickConnect/QuickConnectState.cs

24 lines
656 B
C#
Raw Normal View History

2020-04-15 15:28:42 -04:00
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>
2020-04-24 19:51:19 -04:00
Unavailable = 0,
2020-04-15 15:28:42 -04:00
/// <summary>
/// The feature is enabled for use on the server but is not currently accepting connection requests.
/// </summary>
2020-04-24 19:51:19 -04:00
Available = 1,
2020-04-15 15:28:42 -04:00
/// <summary>
/// The feature is actively accepting connection requests.
/// </summary>
2020-04-24 19:51:19 -04:00
Active = 2
2020-04-15 15:28:42 -04:00
}
}