aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connectivity/ClientType.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 20:33:05 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 20:33:05 -0500
commit767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch)
tree49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Model/Connectivity/ClientType.cs
parent845554722efaed872948a9e0f7202e3ef52f1b6e (diff)
Pushing missing changes
Diffstat (limited to 'MediaBrowser.Model/Connectivity/ClientType.cs')
-rw-r--r--MediaBrowser.Model/Connectivity/ClientType.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Connectivity/ClientType.cs b/MediaBrowser.Model/Connectivity/ClientType.cs
new file mode 100644
index 000000000..409dc9637
--- /dev/null
+++ b/MediaBrowser.Model/Connectivity/ClientType.cs
@@ -0,0 +1,37 @@
+namespace MediaBrowser.Model.Connectivity
+{
+ /// <summary>
+ /// Enum ClientType
+ /// </summary>
+ public enum ClientType
+ {
+ /// <summary>
+ /// The other
+ /// </summary>
+ Other,
+ /// <summary>
+ /// The android
+ /// </summary>
+ Android,
+ /// <summary>
+ /// The dashboard
+ /// </summary>
+ Dashboard,
+ /// <summary>
+ /// The ios
+ /// </summary>
+ Ios,
+ /// <summary>
+ /// The pc
+ /// </summary>
+ Pc,
+ /// <summary>
+ /// The windows phone
+ /// </summary>
+ WindowsPhone,
+ /// <summary>
+ /// The windows RT
+ /// </summary>
+ WindowsRT
+ }
+}