aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SystemCommand.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-28 00:16:21 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-28 00:16:21 -0400
commitdfab2be6f598487828eac7f0343bc2b0842a8941 (patch)
tree66ec944ebae2731efade6b3bcdc3567076061754 /MediaBrowser.Model/Session/SystemCommand.cs
parentb19d0a14d3f9ff97df74423b58a34fcc558be8ad (diff)
added new remote control commands
Diffstat (limited to 'MediaBrowser.Model/Session/SystemCommand.cs')
-rw-r--r--MediaBrowser.Model/Session/SystemCommand.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/SystemCommand.cs b/MediaBrowser.Model/Session/SystemCommand.cs
new file mode 100644
index 000000000..2fcaef6e3
--- /dev/null
+++ b/MediaBrowser.Model/Session/SystemCommand.cs
@@ -0,0 +1,14 @@
+
+namespace MediaBrowser.Model.Session
+{
+ public enum SystemCommand
+ {
+ GoHome,
+ GoToSettings,
+ VolumeUp,
+ VolumeDown,
+ Mute,
+ Unmute,
+ ToggleMute
+ }
+}