EpisodeQuery.cs 2.3 KB

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