mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
38f96af079
Refs #575
14 lines
331 B
C#
14 lines
331 B
C#
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; }
|
|
}
|
|
}
|