jellyfin/MediaBrowser.Model/Querying/PersonsQuery.cs
Luke Pulverenti fb98b0c8e0 updated nuget
2013-10-04 11:22:03 -04:00

24 lines
574 B
C#

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[] { };
}
}
}