diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-09-03 15:57:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 15:57:16 +0000 |
| commit | 15135dc3b8a2421b6b4d550fa5e141e064d5bf82 (patch) | |
| tree | aaf94c0c43ae32eea429319ee700be8ba0f9ab4c /MediaBrowser.Model/QuickConnect/QuickConnectState.cs | |
| parent | 602e746af058daf317fd8a92b2538619d00d6414 (diff) | |
| parent | 0712a7ef11c24c2aa51bbfa74dfa311af24c90bb (diff) | |
Merge branch 'master' into jellyfin-data-warnings
Diffstat (limited to 'MediaBrowser.Model/QuickConnect/QuickConnectState.cs')
| -rw-r--r-- | MediaBrowser.Model/QuickConnect/QuickConnectState.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/QuickConnect/QuickConnectState.cs b/MediaBrowser.Model/QuickConnect/QuickConnectState.cs new file mode 100644 index 000000000..f1074f25f --- /dev/null +++ b/MediaBrowser.Model/QuickConnect/QuickConnectState.cs @@ -0,0 +1,23 @@ +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 + } +} |
