SearchHint.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. using System;
  2. namespace MediaBrowser.Model.Search
  3. {
  4. /// <summary>
  5. /// Class SearchHintResult
  6. /// </summary>
  7. public class SearchHint
  8. {
  9. /// <summary>
  10. /// Gets or sets the item id.
  11. /// </summary>
  12. /// <value>The item id.</value>
  13. public string ItemId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the name.
  16. /// </summary>
  17. /// <value>The name.</value>
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// Gets or sets the matched term.
  21. /// </summary>
  22. /// <value>The matched term.</value>
  23. public string MatchedTerm { get; set; }
  24. /// <summary>
  25. /// Gets or sets the index number.
  26. /// </summary>
  27. /// <value>The index number.</value>
  28. public int? IndexNumber { get; set; }
  29. /// <summary>
  30. /// Gets or sets the production year.
  31. /// </summary>
  32. /// <value>The production year.</value>
  33. public int? ProductionYear { get; set; }
  34. /// <summary>
  35. /// Gets or sets the parent index number.
  36. /// </summary>
  37. /// <value>The parent index number.</value>
  38. public int? ParentIndexNumber { get; set; }
  39. /// <summary>
  40. /// Gets or sets the image tag.
  41. /// </summary>
  42. /// <value>The image tag.</value>
  43. public string PrimaryImageTag { get; set; }
  44. /// <summary>
  45. /// Gets or sets the thumb image tag.
  46. /// </summary>
  47. /// <value>The thumb image tag.</value>
  48. public string ThumbImageTag { get; set; }
  49. /// <summary>
  50. /// Gets or sets the thumb image item identifier.
  51. /// </summary>
  52. /// <value>The thumb image item identifier.</value>
  53. public string ThumbImageItemId { get; set; }
  54. /// <summary>
  55. /// Gets or sets the backdrop image tag.
  56. /// </summary>
  57. /// <value>The backdrop image tag.</value>
  58. public string BackdropImageTag { get; set; }
  59. /// <summary>
  60. /// Gets or sets the backdrop image item identifier.
  61. /// </summary>
  62. /// <value>The backdrop image item identifier.</value>
  63. public string BackdropImageItemId { get; set; }
  64. /// <summary>
  65. /// Gets or sets the type.
  66. /// </summary>
  67. /// <value>The type.</value>
  68. public string Type { get; set; }
  69. /// <summary>
  70. /// Gets or sets the run time ticks.
  71. /// </summary>
  72. /// <value>The run time ticks.</value>
  73. public long? RunTimeTicks { get; set; }
  74. /// <summary>
  75. /// Gets or sets the type of the media.
  76. /// </summary>
  77. /// <value>The type of the media.</value>
  78. public string MediaType { get; set; }
  79. public DateTime? StartDate { get; set; }
  80. public DateTime? EndDate { get; set; }
  81. /// <summary>
  82. /// Gets or sets the series.
  83. /// </summary>
  84. /// <value>The series.</value>
  85. public string Series { get; set; }
  86. public string Status { get; set; }
  87. /// <summary>
  88. /// Gets or sets the album.
  89. /// </summary>
  90. /// <value>The album.</value>
  91. public string Album { get; set; }
  92. /// <summary>
  93. /// Gets or sets the album artist.
  94. /// </summary>
  95. /// <value>The album artist.</value>
  96. public string AlbumArtist { get; set; }
  97. /// <summary>
  98. /// Gets or sets the artists.
  99. /// </summary>
  100. /// <value>The artists.</value>
  101. public string[] Artists { get; set; }
  102. /// <summary>
  103. /// Gets or sets the song count.
  104. /// </summary>
  105. /// <value>The song count.</value>
  106. public int? SongCount { get; set; }
  107. /// <summary>
  108. /// Gets or sets the episode count.
  109. /// </summary>
  110. /// <value>The episode count.</value>
  111. public int? EpisodeCount { get; set; }
  112. /// <summary>
  113. /// Gets or sets the channel identifier.
  114. /// </summary>
  115. /// <value>The channel identifier.</value>
  116. public string ChannelId { get; set; }
  117. /// <summary>
  118. /// Gets or sets the name of the channel.
  119. /// </summary>
  120. /// <value>The name of the channel.</value>
  121. public string ChannelName { get; set; }
  122. /// <summary>
  123. /// Gets or sets the primary image aspect ratio.
  124. /// </summary>
  125. /// <value>The primary image aspect ratio.</value>
  126. public double? PrimaryImageAspectRatio { get; set; }
  127. }
  128. }