ItemFields.cs 5.2 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 can delete.
  14. /// </summary>
  15. CanDelete,
  16. /// <summary>
  17. /// The can download.
  18. /// </summary>
  19. CanDownload,
  20. /// <summary>
  21. /// The channel information.
  22. /// </summary>
  23. ChannelInfo,
  24. /// <summary>
  25. /// The chapters.
  26. /// </summary>
  27. Chapters,
  28. /// <summary>
  29. /// The trickplay manifest.
  30. /// </summary>
  31. Trickplay,
  32. /// <summary>
  33. /// The child count.
  34. /// </summary>
  35. ChildCount,
  36. /// <summary>
  37. /// The cumulative run time ticks.
  38. /// </summary>
  39. CumulativeRunTimeTicks,
  40. /// <summary>
  41. /// The custom rating.
  42. /// </summary>
  43. CustomRating,
  44. /// <summary>
  45. /// The date created of the item.
  46. /// </summary>
  47. DateCreated,
  48. /// <summary>
  49. /// The date last media added.
  50. /// </summary>
  51. DateLastMediaAdded,
  52. /// <summary>
  53. /// Item display preferences.
  54. /// </summary>
  55. DisplayPreferencesId,
  56. /// <summary>
  57. /// The etag.
  58. /// </summary>
  59. Etag,
  60. /// <summary>
  61. /// The external urls.
  62. /// </summary>
  63. ExternalUrls,
  64. /// <summary>
  65. /// Genres.
  66. /// </summary>
  67. Genres,
  68. /// <summary>
  69. /// The item counts.
  70. /// </summary>
  71. ItemCounts,
  72. /// <summary>
  73. /// The media source count.
  74. /// </summary>
  75. MediaSourceCount,
  76. /// <summary>
  77. /// The media versions.
  78. /// </summary>
  79. MediaSources,
  80. /// <summary>
  81. /// The original title.
  82. /// </summary>
  83. OriginalTitle,
  84. /// <summary>
  85. /// The item overview.
  86. /// </summary>
  87. Overview,
  88. /// <summary>
  89. /// The id of the item's parent.
  90. /// </summary>
  91. ParentId,
  92. /// <summary>
  93. /// The physical path of the item.
  94. /// </summary>
  95. Path,
  96. /// <summary>
  97. /// The list of people for the item.
  98. /// </summary>
  99. People,
  100. /// <summary>
  101. /// Value indicating whether playback access is granted.
  102. /// </summary>
  103. PlayAccess,
  104. /// <summary>
  105. /// The production locations.
  106. /// </summary>
  107. ProductionLocations,
  108. /// <summary>
  109. /// The ids from IMDb, TMDb, etc.
  110. /// </summary>
  111. ProviderIds,
  112. /// <summary>
  113. /// The aspect ratio of the primary image.
  114. /// </summary>
  115. PrimaryImageAspectRatio,
  116. /// <summary>
  117. /// The recursive item count.
  118. /// </summary>
  119. RecursiveItemCount,
  120. /// <summary>
  121. /// The settings.
  122. /// </summary>
  123. Settings,
  124. /// <summary>
  125. /// The series studio.
  126. /// </summary>
  127. SeriesStudio,
  128. /// <summary>
  129. /// The sort name of the item.
  130. /// </summary>
  131. SortName,
  132. /// <summary>
  133. /// The special episode numbers.
  134. /// </summary>
  135. SpecialEpisodeNumbers,
  136. /// <summary>
  137. /// The studios of the item.
  138. /// </summary>
  139. Studios,
  140. /// <summary>
  141. /// The taglines of the item.
  142. /// </summary>
  143. Taglines,
  144. /// <summary>
  145. /// The tags.
  146. /// </summary>
  147. Tags,
  148. /// <summary>
  149. /// The trailer url of the item.
  150. /// </summary>
  151. RemoteTrailers,
  152. /// <summary>
  153. /// The media streams.
  154. /// </summary>
  155. MediaStreams,
  156. /// <summary>
  157. /// The season user data.
  158. /// </summary>
  159. SeasonUserData,
  160. /// <summary>
  161. /// The last time metadata was refreshed.
  162. /// </summary>
  163. DateLastRefreshed,
  164. /// <summary>
  165. /// The last time metadata was saved.
  166. /// </summary>
  167. DateLastSaved,
  168. /// <summary>
  169. /// The refresh state.
  170. /// </summary>
  171. RefreshState,
  172. /// <summary>
  173. /// The channel image.
  174. /// </summary>
  175. ChannelImage,
  176. /// <summary>
  177. /// Value indicating whether media source display is enabled.
  178. /// </summary>
  179. EnableMediaSourceDisplay,
  180. /// <summary>
  181. /// The width.
  182. /// </summary>
  183. Width,
  184. /// <summary>
  185. /// The height.
  186. /// </summary>
  187. Height,
  188. /// <summary>
  189. /// The external Ids.
  190. /// </summary>
  191. ExtraIds,
  192. /// <summary>
  193. /// The local trailer count.
  194. /// </summary>
  195. LocalTrailerCount,
  196. /// <summary>
  197. /// Value indicating whether the item is HD.
  198. /// </summary>
  199. IsHD,
  200. /// <summary>
  201. /// The special feature count.
  202. /// </summary>
  203. SpecialFeatureCount
  204. }
  205. }