aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ConnectionState.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-08 19:31:44 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-08 19:31:44 -0400
commitd091fe0e6e5923bd0ce597c83d9a76650e3dc7f9 (patch)
treea6f90d896b7b22d4cb8f9041af79b36a1cc1f061 /MediaBrowser.Model/ApiClient/ConnectionState.cs
parentbebba65d6137125d459a911b695131c063524c56 (diff)
extract classes
Diffstat (limited to 'MediaBrowser.Model/ApiClient/ConnectionState.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/ConnectionState.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/ConnectionState.cs b/MediaBrowser.Model/ApiClient/ConnectionState.cs
new file mode 100644
index 000000000..9374c77f6
--- /dev/null
+++ b/MediaBrowser.Model/ApiClient/ConnectionState.cs
@@ -0,0 +1,9 @@
+namespace MediaBrowser.Model.ApiClient
+{
+ public enum ConnectionState
+ {
+ Unavailable = 1,
+ ServerSignIn = 2,
+ SignedIn = 3
+ }
+} \ No newline at end of file