diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-31 17:04:22 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-31 17:04:22 -0400 |
| commit | bb5386bb3a8b71406728f8bd2249cf6e02a34ed2 (patch) | |
| tree | 7fddf86baf42e93c7544053b30e215aaec8ac1c2 /MediaBrowser.Model/Session/GenericCommand.cs | |
| parent | c0801e4f6de87f6a14409b7f399cfd52b3ce88e8 (diff) | |
added more remote control commands
Diffstat (limited to 'MediaBrowser.Model/Session/GenericCommand.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/GenericCommand.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/MediaBrowser.Model/Session/GenericCommand.cs b/MediaBrowser.Model/Session/GenericCommand.cs deleted file mode 100644 index f7ea0a84a..000000000 --- a/MediaBrowser.Model/Session/GenericCommand.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace MediaBrowser.Model.Session -{ - public class GenericCommand - { - public string Name { get; set; } - - public string ControllingUserId { get; set; } - - public Dictionary<string, string> Arguments { get; set; } - - public GenericCommand() - { - Arguments = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); - } - } - - /// <summary> - /// This exists simply to identify a set of known commands. - /// </summary> - public enum CoreGenericCommand - { - MoveUp = 0, - MoveDown = 1, - MoveLeft = 2, - MoveRight = 3, - PageUp = 4, - PageDown = 5, - PreviousLetter = 6, - NextLetter = 7, - ToggleOsd = 8, - ToggleContextMenu = 9, - Select = 10, - Back = 11, - TakeScreenshot = 12, - SendKey = 13, - SendString = 14, - GoHome = 15, - GoToSettings = 16, - VolumeUp = 17, - VolumeDown = 18, - Mute = 19, - Unmute = 20, - ToggleMute = 21 - } -} |
