2
0

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