ItemFields.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. OfficialRatingDescription,
  102. OriginalTitle,
  103. /// <summary>
  104. /// The item overview
  105. /// </summary>
  106. Overview,
  107. /// <summary>
  108. /// The id of the item's parent
  109. /// </summary>
  110. ParentId,
  111. /// <summary>
  112. /// The physical path of the item
  113. /// </summary>
  114. Path,
  115. /// <summary>
  116. /// The list of people for the item
  117. /// </summary>
  118. People,
  119. PlayAccess,
  120. /// <summary>
  121. /// The production locations
  122. /// </summary>
  123. ProductionLocations,
  124. /// <summary>
  125. /// Imdb, tmdb, etc
  126. /// </summary>
  127. ProviderIds,
  128. /// <summary>
  129. /// The aspect ratio of the primary image
  130. /// </summary>
  131. PrimaryImageAspectRatio,
  132. RecursiveItemCount,
  133. /// <summary>
  134. /// The season name
  135. /// </summary>
  136. SeasonName,
  137. /// <summary>
  138. /// The settings
  139. /// </summary>
  140. Settings,
  141. /// <summary>
  142. /// The screenshot image tags
  143. /// </summary>
  144. ScreenshotImageTags,
  145. /// <summary>
  146. /// The series genres
  147. /// </summary>
  148. SeriesGenres,
  149. SeriesPrimaryImage,
  150. /// <summary>
  151. /// The series studio
  152. /// </summary>
  153. SeriesStudio,
  154. /// <summary>
  155. /// The sort name of the item
  156. /// </summary>
  157. SortName,
  158. /// <summary>
  159. /// The special episode numbers
  160. /// </summary>
  161. SpecialEpisodeNumbers,
  162. /// <summary>
  163. /// The studios of the item
  164. /// </summary>
  165. Studios,
  166. BasicSyncInfo,
  167. /// <summary>
  168. /// The synchronize information
  169. /// </summary>
  170. SyncInfo,
  171. /// <summary>
  172. /// The taglines of the item
  173. /// </summary>
  174. Taglines,
  175. /// <summary>
  176. /// The tags
  177. /// </summary>
  178. Tags,
  179. /// <summary>
  180. /// The vote count
  181. /// </summary>
  182. VoteCount,
  183. /// <summary>
  184. /// The trailer url of the item
  185. /// </summary>
  186. RemoteTrailers,
  187. /// <summary>
  188. /// The media streams
  189. /// </summary>
  190. MediaStreams,
  191. /// <summary>
  192. /// The season user data
  193. /// </summary>
  194. SeasonUserData,
  195. /// <summary>
  196. /// The service name
  197. /// </summary>
  198. ServiceName,
  199. ThemeSongIds,
  200. ThemeVideoIds
  201. }
  202. }