blob: a4b7eab71279e942a49f6089dd4683f3067bc114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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[] { };
}
}
}
|