SearchHint.cs 4.6 KB

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