QueryFilters.cs 481 B

12345678910111213141516171819
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. public class QueryFilters
  5. {
  6. public string[] Genres { get; set; }
  7. public string[] Tags { get; set; }
  8. public string[] OfficialRatings { get; set; }
  9. public int[] Years { get; set; }
  10. public QueryFilters()
  11. {
  12. Genres = new string[] { };
  13. Tags = new string[] { };
  14. OfficialRatings = new string[] { };
  15. Years = new int[] { };
  16. }
  17. }
  18. }