namespace MediaBrowser.Model.Querying
{
    /// 
    /// Class SessionQuery
    /// 
    public class SessionQuery
    {
        /// 
        /// Filter by sessions that are allowed to be controlled by a given user
        /// 
        public string ControllableByUserId { get; set; }
        /// 
        /// Filter by sessions that either do or do not support remote control. Default returns all sessions.
        /// 
        public bool? SupportsRemoteControl { get; set; }
    }
}