aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-04-06 18:59:45 +0900
committerGitHub <noreply@github.com>2020-04-06 18:59:45 +0900
commitcb634d27d8f66ce05d21610226306e80c47af959 (patch)
tree05aeb5429bf7baf757fb99addf9c11c8ba986406 /MediaBrowser.Controller
parentde634203d812922bb04359a32e59189fb0110791 (diff)
parent19b6961c0890df8461a07039c0a3edbb9a276120 (diff)
Merge branch 'master' into use-development-exception-page
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Entities/InternalPeopleQuery.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
index 1613531b5c..dfa5816713 100644
--- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
@@ -4,11 +4,21 @@ namespace MediaBrowser.Controller.Entities
{
public class InternalPeopleQuery
{
+ /// <summary>
+ /// Gets or sets the maximum number of items the query should return.
+ /// <summary>
+ public int Limit { get; set; }
+
public Guid ItemId { get; set; }
+
public string[] PersonTypes { get; set; }
+
public string[] ExcludePersonTypes { get; set; }
+
public int? MaxListOrder { get; set; }
+
public Guid AppearsInItemId { get; set; }
+
public string NameContains { get; set; }
public InternalPeopleQuery()