ItemFields.cs 4.9 KB

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