diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 16:03:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 16:03:14 -0400 |
| commit | 631b7b62c1eb4b233ac39ac32f5152f2b51f8e9f (patch) | |
| tree | bb9f1cfee4eaf90273bd143d4955c778632c95b1 /MediaBrowser.Api/SessionsService.cs | |
| parent | 088df67fcadd75d0da40f4e252a6d6bcc47c7274 (diff) | |
added ControllableByUserId to sessions url
Diffstat (limited to 'MediaBrowser.Api/SessionsService.cs')
| -rw-r--r-- | MediaBrowser.Api/SessionsService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Api/SessionsService.cs b/MediaBrowser.Api/SessionsService.cs index a0ef4a9a3..cad3c4384 100644 --- a/MediaBrowser.Api/SessionsService.cs +++ b/MediaBrowser.Api/SessionsService.cs @@ -25,6 +25,9 @@ namespace MediaBrowser.Api /// <value><c>null</c> if [supports remote control] contains no value, <c>true</c> if [supports remote control]; otherwise, <c>false</c>.</value> [ApiMember(Name = "SupportsRemoteControl", Description = "Optional. Filter by sessions that can be remote controlled.", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")] public bool? SupportsRemoteControl { get; set; } + + [ApiMember(Name = "ControllableByUserId", Description = "Optional. Filter by sessions that a given user is allowed to remote control.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")] + public Guid? ControllableByUserId { get; set; } } /// <summary> |
