EpisodeQuery.cs 2.2 KB

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