EpisodeQuery.cs 2.3 KB

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