ConnectionState.cs 214 B

1234567891011
  1. namespace MediaBrowser.Model.ApiClient
  2. {
  3. public enum ConnectionState
  4. {
  5. Unavailable = 1,
  6. ServerSignIn = 2,
  7. SignedIn = 3,
  8. ServerSelection = 4,
  9. ConnectSignIn = 5
  10. }
  11. }