ItemFields.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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. /// <summary>
  124. /// The production locations
  125. /// </summary>
  126. ProductionLocations,
  127. /// <summary>
  128. /// Imdb, tmdb, etc
  129. /// </summary>
  130. ProviderIds,
  131. /// <summary>
  132. /// The aspect ratio of the primary image
  133. /// </summary>
  134. PrimaryImageAspectRatio,
  135. RecursiveItemCount,
  136. /// <summary>
  137. /// The season name
  138. /// </summary>
  139. SeasonName,
  140. /// <summary>
  141. /// The settings
  142. /// </summary>
  143. Settings,
  144. /// <summary>
  145. /// The screenshot image tags
  146. /// </summary>
  147. ScreenshotImageTags,
  148. /// <summary>
  149. /// The series genres
  150. /// </summary>
  151. SeriesGenres,
  152. SeriesPrimaryImage,
  153. /// <summary>
  154. /// The series studio
  155. /// </summary>
  156. SeriesStudio,
  157. /// <summary>
  158. /// The sort name of the item
  159. /// </summary>
  160. SortName,
  161. /// <summary>
  162. /// The special episode numbers
  163. /// </summary>
  164. SpecialEpisodeNumbers,
  165. /// <summary>
  166. /// The studios of the item
  167. /// </summary>
  168. Studios,
  169. BasicSyncInfo,
  170. /// <summary>
  171. /// The synchronize information
  172. /// </summary>
  173. SyncInfo,
  174. /// <summary>
  175. /// The taglines of the item
  176. /// </summary>
  177. Taglines,
  178. /// <summary>
  179. /// The tags
  180. /// </summary>
  181. Tags,
  182. /// <summary>
  183. /// The vote count
  184. /// </summary>
  185. VoteCount,
  186. /// <summary>
  187. /// The trailer url of the item
  188. /// </summary>
  189. RemoteTrailers,
  190. /// <summary>
  191. /// The media streams
  192. /// </summary>
  193. MediaStreams,
  194. /// <summary>
  195. /// The season user data
  196. /// </summary>
  197. SeasonUserData,
  198. /// <summary>
  199. /// The service name
  200. /// </summary>
  201. ServiceName,
  202. ThemeSongIds,
  203. ThemeVideoIds
  204. }
  205. }