InternalPeopleQuery.cs 709 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class InternalPeopleQuery
  6. {
  7. public Guid ItemId { get; set; }
  8. public List<string> PersonTypes { get; set; }
  9. public List<string> ExcludePersonTypes { get; set; }
  10. public int? MaxListOrder { get; set; }
  11. public Guid AppearsInItemId { get; set; }
  12. public string NameContains { get; set; }
  13. public SourceType[] SourceTypes { get; set; }
  14. public InternalPeopleQuery()
  15. {
  16. PersonTypes = new List<string>();
  17. ExcludePersonTypes = new List<string>();
  18. SourceTypes = new SourceType[] { };
  19. }
  20. }
  21. }