PersonsQuery.cs 574 B

1234567891011121314151617181920212223
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. /// <summary>
  5. /// Class PersonsQuery
  6. /// </summary>
  7. public class PersonsQuery : ItemsByNameQuery
  8. {
  9. /// <summary>
  10. /// Gets or sets the person types.
  11. /// </summary>
  12. /// <value>The person types.</value>
  13. public string[] PersonTypes { get; set; }
  14. /// <summary>
  15. /// Initializes a new instance of the <see cref="PersonsQuery"/> class.
  16. /// </summary>
  17. public PersonsQuery()
  18. {
  19. PersonTypes = new string[] { };
  20. }
  21. }
  22. }