EpisodeQuery.cs 980 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using MediaBrowser.Model.Entities;
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. public class EpisodeQuery
  5. {
  6. public string UserId { get; set; }
  7. public string SeriesId { get; set; }
  8. public LocationType[] ExcludeLocationTypes { get; set; }
  9. public int? SeasonNumber { get; set; }
  10. public ItemFields[] Fields { get; set; }
  11. public EpisodeQuery()
  12. {
  13. Fields = new ItemFields[] { };
  14. ExcludeLocationTypes = new LocationType[] { };
  15. }
  16. }
  17. public class SeasonQuery
  18. {
  19. public string UserId { get; set; }
  20. public string SeriesId { get; set; }
  21. public LocationType[] ExcludeLocationTypes { get; set; }
  22. public ItemFields[] Fields { get; set; }
  23. public bool? IsSpecialSeason { get; set; }
  24. public SeasonQuery()
  25. {
  26. Fields = new ItemFields[] { };
  27. ExcludeLocationTypes = new LocationType[] { };
  28. }
  29. }
  30. }