diff options
| author | cvium <clausvium@gmail.com> | 2020-11-05 12:27:22 +0100 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2020-11-05 12:27:22 +0100 |
| commit | 584b4fa41f4a19a7df2a78b408e3763ca0ff4027 (patch) | |
| tree | 4c8794f5c7fb134b173eb0ebab022686494d60e3 /MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | |
| parent | 8fc16043c7c080afd31f67798b74ccdf62eb583c (diff) | |
Fix Persons, Genres and Studios endpoints
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 4e09ee573..5b96a5af6 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -1,6 +1,7 @@ #pragma warning disable CS1591 using System; +using Jellyfin.Data.Entities; namespace MediaBrowser.Controller.Entities { @@ -23,6 +24,10 @@ namespace MediaBrowser.Controller.Entities public string NameContains { get; set; } + public User User { get; set; } + + public bool? IsFavorite { get; set; } + public InternalPeopleQuery() { PersonTypes = Array.Empty<string>(); |
