ItemFields.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. /// <summary>
  5. /// Used to control the data that gets attached to DtoBaseItems
  6. /// </summary>
  7. public enum ItemFields
  8. {
  9. /// <summary>
  10. /// The alternate episode numbers
  11. /// </summary>
  12. AlternateEpisodeNumbers,
  13. /// <summary>
  14. /// The awards summary
  15. /// </summary>
  16. AwardSummary,
  17. /// <summary>
  18. /// The budget
  19. /// </summary>
  20. Budget,
  21. /// <summary>
  22. /// The chapters
  23. /// </summary>
  24. Chapters,
  25. /// <summary>
  26. /// The critic rating summary
  27. /// </summary>
  28. CriticRatingSummary,
  29. /// <summary>
  30. /// The cumulative run time ticks
  31. /// </summary>
  32. CumulativeRunTimeTicks,
  33. /// <summary>
  34. /// The custom rating
  35. /// </summary>
  36. CustomRating,
  37. /// <summary>
  38. /// The date created of the item
  39. /// </summary>
  40. DateCreated,
  41. /// <summary>
  42. /// The date last media added
  43. /// </summary>
  44. DateLastMediaAdded,
  45. /// <summary>
  46. /// Item display preferences
  47. /// </summary>
  48. DisplayPreferencesId,
  49. /// <summary>
  50. /// The display media type
  51. /// </summary>
  52. DisplayMediaType,
  53. /// <summary>
  54. /// The external urls
  55. /// </summary>
  56. ExternalUrls,
  57. /// <summary>
  58. /// Genres
  59. /// </summary>
  60. Genres,
  61. /// <summary>
  62. /// The home page URL
  63. /// </summary>
  64. HomePageUrl,
  65. /// <summary>
  66. /// The fields that the server supports indexing on
  67. /// </summary>
  68. IndexOptions,
  69. /// <summary>
  70. /// The keywords
  71. /// </summary>
  72. Keywords,
  73. /// <summary>
  74. /// The media source count
  75. /// </summary>
  76. MediaSourceCount,
  77. /// <summary>
  78. /// The media versions
  79. /// </summary>
  80. MediaSources,
  81. /// <summary>
  82. /// The metascore
  83. /// </summary>
  84. Metascore,
  85. /// <summary>
  86. /// The metadata settings
  87. /// </summary>
  88. Settings,
  89. /// <summary>
  90. /// The item overview
  91. /// </summary>
  92. Overview,
  93. /// <summary>
  94. /// The id of the item's parent
  95. /// </summary>
  96. ParentId,
  97. /// <summary>
  98. /// The physical path of the item
  99. /// </summary>
  100. Path,
  101. /// <summary>
  102. /// The list of people for the item
  103. /// </summary>
  104. People,
  105. /// <summary>
  106. /// The production locations
  107. /// </summary>
  108. ProductionLocations,
  109. /// <summary>
  110. /// Imdb, tmdb, etc
  111. /// </summary>
  112. ProviderIds,
  113. /// <summary>
  114. /// The aspect ratio of the primary image
  115. /// </summary>
  116. PrimaryImageAspectRatio,
  117. /// <summary>
  118. /// The original primary image aspect ratio
  119. /// </summary>
  120. OriginalPrimaryImageAspectRatio,
  121. /// <summary>
  122. /// The revenue
  123. /// </summary>
  124. Revenue,
  125. /// <summary>
  126. /// The short overview
  127. /// </summary>
  128. ShortOverview,
  129. /// <summary>
  130. /// The screenshot image tags
  131. /// </summary>
  132. ScreenshotImageTags,
  133. /// <summary>
  134. /// The series genres
  135. /// </summary>
  136. SeriesGenres,
  137. /// <summary>
  138. /// The series studio
  139. /// </summary>
  140. SeriesStudio,
  141. /// <summary>
  142. /// The soundtrack ids
  143. /// </summary>
  144. SoundtrackIds,
  145. /// <summary>
  146. /// The sort name of the item
  147. /// </summary>
  148. SortName,
  149. /// <summary>
  150. /// The studios of the item
  151. /// </summary>
  152. Studios,
  153. /// <summary>
  154. /// The synchronize information
  155. /// </summary>
  156. SyncInfo,
  157. /// <summary>
  158. /// The taglines of the item
  159. /// </summary>
  160. Taglines,
  161. /// <summary>
  162. /// The tags
  163. /// </summary>
  164. Tags,
  165. /// <summary>
  166. /// The vote count
  167. /// </summary>
  168. VoteCount,
  169. /// <summary>
  170. /// The TMDB collection name
  171. /// </summary>
  172. TmdbCollectionName,
  173. /// <summary>
  174. /// The trailer url of the item
  175. /// </summary>
  176. RemoteTrailers,
  177. /// <summary>
  178. /// The media streams
  179. /// </summary>
  180. MediaStreams
  181. }
  182. }