You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
574 B
24 lines
574 B
|
|
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[] { };
|
|
}
|
|
}
|
|
}
|