aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session
diff options
context:
space:
mode:
authorTim Hobbs <jesus.tesh@gmail.com>2014-03-31 14:39:27 -0700
committerTim Hobbs <jesus.tesh@gmail.com>2014-03-31 14:39:27 -0700
commitf4f76a1a5bcdef2ea3eb77101d70959bd70cb8e7 (patch)
tree25da19e597d1e36fb768293385a3a212f37e8ef0 /MediaBrowser.Model/Session
parent5693327a20c3f92f33da63cc3f0cb659d6cd8576 (diff)
parent32ac5619fe3678b8482d8771941ad601e1a59afd (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Model/Session')
-rw-r--r--MediaBrowser.Model/Session/GeneralCommand.cs (renamed from MediaBrowser.Model/Session/GenericCommand.cs)6
-rw-r--r--MediaBrowser.Model/Session/SystemCommand.cs14
2 files changed, 3 insertions, 17 deletions
diff --git a/MediaBrowser.Model/Session/GenericCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs
index f7ea0a84a..0de7d6dd8 100644
--- a/MediaBrowser.Model/Session/GenericCommand.cs
+++ b/MediaBrowser.Model/Session/GeneralCommand.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
- public class GenericCommand
+ public class GeneralCommand
{
public string Name { get; set; }
@@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Session
public Dictionary<string, string> Arguments { get; set; }
- public GenericCommand()
+ public GeneralCommand()
{
Arguments = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
@@ -20,7 +20,7 @@ namespace MediaBrowser.Model.Session
/// <summary>
/// This exists simply to identify a set of known commands.
/// </summary>
- public enum CoreGenericCommand
+ public enum GeneralCommandType
{
MoveUp = 0,
MoveDown = 1,
diff --git a/MediaBrowser.Model/Session/SystemCommand.cs b/MediaBrowser.Model/Session/SystemCommand.cs
deleted file mode 100644
index 2fcaef6e3..000000000
--- a/MediaBrowser.Model/Session/SystemCommand.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-
-namespace MediaBrowser.Model.Session
-{
- public enum SystemCommand
- {
- GoHome,
- GoToSettings,
- VolumeUp,
- VolumeDown,
- Mute,
- Unmute,
- ToggleMute
- }
-}