ItemFields.cs 5.1 KB

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