blob: 77bfef05fb310a64e0baa96a4513bcf015d02d86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace MediaBrowser.Model.Querying
{
/// <summary>
/// Class SessionQuery
/// </summary>
public class SessionQuery
{
/// <summary>
/// Filter by sessions that are allowed to be controlled by a given user
/// </summary>
public string ControllableByUserId { get; set; }
/// <summary>
/// Filter by sessions that either do or do not support remote control. Default returns all sessions.
/// </summary>
public bool? SupportsRemoteControl { get; set; }
}
}
|