aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-04-04 01:38:09 +0300
committerGitHub <noreply@github.com>2020-04-04 01:38:09 +0300
commitd5cc10d7e1a62b98af1a675aaef5ca5379fe4363 (patch)
tree3d5ae45418ce47e0c098150cdca70258715cabd5 /MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
parentcda0574c8d70e68ec625fe9983eaa54501e694ff (diff)
parent64692af1a23dafba2e67620478ffeae078244070 (diff)
Merge pull request #2741 from Bond-009/dlnawarnings2
Fix some warnings
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs')
-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 1613531b5..dfa581671 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()