aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/PersonsQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Querying/PersonsQuery.cs')
-rw-r--r--MediaBrowser.Model/Querying/PersonsQuery.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/PersonsQuery.cs b/MediaBrowser.Model/Querying/PersonsQuery.cs
new file mode 100644
index 000000000..a4b7eab71
--- /dev/null
+++ b/MediaBrowser.Model/Querying/PersonsQuery.cs
@@ -0,0 +1,23 @@
+
+namespace MediaBrowser.Model.Querying
+{
+ /// <summary>
+ /// Class PersonsQuery
+ /// </summary>
+ public class PersonsQuery : ItemsByNameQuery
+ {
+ /// <summary>
+ /// Gets or sets the person types.
+ /// </summary>
+ /// <value>The person types.</value>
+ public string[] PersonTypes { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="PersonsQuery"/> class.
+ /// </summary>
+ public PersonsQuery()
+ {
+ PersonTypes = new string[] { };
+ }
+ }
+}