diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-04-05 11:33:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-05 11:33:39 +0200 |
| commit | 70a48e1da45bf03d60e1ad80fe93cfaa8825ba4d (patch) | |
| tree | 26fbf9a800aa7b7b90055cb2852f6c97b2844418 /MediaBrowser.Controller | |
| parent | 982d7432f99a90a3ee8d342f19c35d2e5792f205 (diff) | |
| parent | 80df5dc984b714852987efb02700b46376452e5c (diff) | |
Merge pull request #16397 from dkanada/person-queries
add StartIndex and ParentId to person search
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 203a16a668..f4b3910b0e 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -21,6 +21,8 @@ namespace MediaBrowser.Controller.Entities ExcludePersonTypes = excludePersonTypes; } + public int? StartIndex { get; set; } + /// <summary> /// Gets or sets the maximum number of items the query should return. /// </summary> @@ -28,6 +30,8 @@ namespace MediaBrowser.Controller.Entities public Guid ItemId { get; set; } + public Guid? ParentId { get; set; } + public IReadOnlyList<string> PersonTypes { get; } public IReadOnlyList<string> ExcludePersonTypes { get; } |
