From 3161e85f7678aab603eb2f0180a2b911207e477e Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 3 Apr 2020 17:30:01 +0200 Subject: Address comments --- MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs') diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 1613531b5..41d8a4c83 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -4,11 +4,18 @@ namespace MediaBrowser.Controller.Entities { public class InternalPeopleQuery { + 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() -- cgit v1.2.3 From d6224ddedab49c8a4c95176de4fece1c73348e09 Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Fri, 3 Apr 2020 22:44:18 +0200 Subject: Update InternalPeopleQuery.cs --- MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs') diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 41d8a4c83..79b4d9444 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -4,6 +4,9 @@ namespace MediaBrowser.Controller.Entities { public class InternalPeopleQuery { + /// + /// Gets or sets the maximum of items the query should return. + /// public int Limit { get; set; } public Guid ItemId { get; set; } -- cgit v1.2.3 From 0951dc632bf033ddd07462e0c6958e84e6d24627 Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Sat, 4 Apr 2020 00:21:54 +0200 Subject: Update MediaBrowser.Controller/Entities/InternalPeopleQuery.cs Co-Authored-By: Mark Monteiro --- MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs') diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 79b4d9444..dfa581671 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -5,7 +5,7 @@ namespace MediaBrowser.Controller.Entities public class InternalPeopleQuery { /// - /// Gets or sets the maximum of items the query should return. + /// Gets or sets the maximum number of items the query should return. /// public int Limit { get; set; } -- cgit v1.2.3