QuickConnectState.cs 656 B

1234567891011121314151617181920212223
  1. namespace MediaBrowser.Model.QuickConnect
  2. {
  3. /// <summary>
  4. /// Quick connect state.
  5. /// </summary>
  6. public enum QuickConnectState
  7. {
  8. /// <summary>
  9. /// This feature has not been opted into and is unavailable until the server administrator chooses to opt-in.
  10. /// </summary>
  11. Unavailable = 0,
  12. /// <summary>
  13. /// The feature is enabled for use on the server but is not currently accepting connection requests.
  14. /// </summary>
  15. Available = 1,
  16. /// <summary>
  17. /// The feature is actively accepting connection requests.
  18. /// </summary>
  19. Active = 2
  20. }
  21. }