aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/SessionQuery.cs
blob: fa7df315ca61cb15f63949ec437fd4f0013cc95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}