diff options
Diffstat (limited to 'MediaBrowser.Model/Session/GenericCommand.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/GenericCommand.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/GenericCommand.cs b/MediaBrowser.Model/Session/GenericCommand.cs index 3d5e503ef..f7ea0a84a 100644 --- a/MediaBrowser.Model/Session/GenericCommand.cs +++ b/MediaBrowser.Model/Session/GenericCommand.cs @@ -7,6 +7,8 @@ namespace MediaBrowser.Model.Session { public string Name { get; set; } + public string ControllingUserId { get; set; } + public Dictionary<string, string> Arguments { get; set; } public GenericCommand() @@ -15,6 +17,9 @@ namespace MediaBrowser.Model.Session } } + /// <summary> + /// This exists simply to identify a set of known commands. + /// </summary> public enum CoreGenericCommand { MoveUp = 0, |
