mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
added ControllableByUserId to sessions url
This commit is contained in:
19
MediaBrowser.Model/Querying/SessionQuery.cs
Normal file
19
MediaBrowser.Model/Querying/SessionQuery.cs
Normal file
@@ -0,0 +1,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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user