jellyfin/MediaBrowser.Model/QuickConnect/QuickConnectState.cs

24 lines
656 B
C#
Raw Normal View History

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