ItemFields.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. /// <summary>
  140. /// The revenue
  141. /// </summary>
  142. Revenue,
  143. /// <summary>
  144. /// The season name
  145. /// </summary>
  146. SeasonName,
  147. /// <summary>
  148. /// The settings
  149. /// </summary>
  150. Settings,
  151. /// <summary>
  152. /// The short overview
  153. /// </summary>
  154. ShortOverview,
  155. /// <summary>
  156. /// The screenshot image tags
  157. /// </summary>
  158. ScreenshotImageTags,
  159. /// <summary>
  160. /// The series genres
  161. /// </summary>
  162. SeriesGenres,
  163. SeriesPrimaryImage,
  164. /// <summary>
  165. /// The series studio
  166. /// </summary>
  167. SeriesStudio,
  168. /// <summary>
  169. /// The sort name of the item
  170. /// </summary>
  171. SortName,
  172. /// <summary>
  173. /// The special episode numbers
  174. /// </summary>
  175. SpecialEpisodeNumbers,
  176. /// <summary>
  177. /// The studios of the item
  178. /// </summary>
  179. Studios,
  180. BasicSyncInfo,
  181. /// <summary>
  182. /// The synchronize information
  183. /// </summary>
  184. SyncInfo,
  185. /// <summary>
  186. /// The taglines of the item
  187. /// </summary>
  188. Taglines,
  189. /// <summary>
  190. /// The tags
  191. /// </summary>
  192. Tags,
  193. /// <summary>
  194. /// The vote count
  195. /// </summary>
  196. VoteCount,
  197. /// <summary>
  198. /// The trailer url of the item
  199. /// </summary>
  200. RemoteTrailers,
  201. /// <summary>
  202. /// The media streams
  203. /// </summary>
  204. MediaStreams,
  205. /// <summary>
  206. /// The season user data
  207. /// </summary>
  208. SeasonUserData,
  209. /// <summary>
  210. /// The service name
  211. /// </summary>
  212. ServiceName,
  213. ThemeSongIds,
  214. ThemeVideoIds
  215. }
  216. }