2
0

EpisodeQuery.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. public class EpisodeQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the user identifier.
  8. /// </summary>
  9. /// <value>The user identifier.</value>
  10. public string UserId { get; set; }
  11. /// <summary>
  12. /// Gets or sets the season identifier.
  13. /// </summary>
  14. /// <value>The season identifier.</value>
  15. public string SeasonId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the series identifier.
  18. /// </summary>
  19. /// <value>The series identifier.</value>
  20. public string SeriesId { get; set; }
  21. /// <summary>
  22. /// Gets or sets a value indicating whether this instance is missing.
  23. /// </summary>
  24. /// <value><c>null</c> if [is missing] contains no value, <c>true</c> if [is missing]; otherwise, <c>false</c>.</value>
  25. public bool? IsMissing { get; set; }
  26. /// <summary>
  27. /// Gets or sets a value indicating whether this instance is virtual unaired.
  28. /// </summary>
  29. /// <value><c>null</c> if [is virtual unaired] contains no value, <c>true</c> if [is virtual unaired]; otherwise, <c>false</c>.</value>
  30. public bool? IsVirtualUnaired { get; set; }
  31. /// <summary>
  32. /// Gets or sets the season number.
  33. /// </summary>
  34. /// <value>The season number.</value>
  35. public int? SeasonNumber { get; set; }
  36. /// <summary>
  37. /// Gets or sets the fields.
  38. /// </summary>
  39. /// <value>The fields.</value>
  40. public ItemFields[] Fields { get; set; }
  41. /// <summary>
  42. /// Gets or sets the start index.
  43. /// </summary>
  44. /// <value>The start index.</value>
  45. public int? StartIndex { get; set; }
  46. /// <summary>
  47. /// Gets or sets the limit.
  48. /// </summary>
  49. /// <value>The limit.</value>
  50. public int? Limit { get; set; }
  51. /// <summary>
  52. /// Gets or sets the start item identifier.
  53. /// </summary>
  54. /// <value>The start item identifier.</value>
  55. public string StartItemId { get; set; }
  56. public EpisodeQuery()
  57. {
  58. Fields = new ItemFields[] { };
  59. }
  60. }
  61. }