ItemFields.cs 5.3 KB

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