ItemFields.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Model.Querying
  4. {
  5. /// <summary>
  6. /// Used to control the data that gets attached to DtoBaseItems.
  7. /// </summary>
  8. public enum ItemFields
  9. {
  10. /// <summary>
  11. /// The air time.
  12. /// </summary>
  13. AirTime,
  14. /// <summary>
  15. /// The can delete.
  16. /// </summary>
  17. CanDelete,
  18. /// <summary>
  19. /// The can download.
  20. /// </summary>
  21. CanDownload,
  22. /// <summary>
  23. /// The channel information.
  24. /// </summary>
  25. ChannelInfo,
  26. /// <summary>
  27. /// The chapters.
  28. /// </summary>
  29. Chapters,
  30. /// <summary>
  31. /// The trickplay manifest.
  32. /// </summary>
  33. Trickplay,
  34. ChildCount,
  35. /// <summary>
  36. /// The cumulative run time ticks.
  37. /// </summary>
  38. CumulativeRunTimeTicks,
  39. /// <summary>
  40. /// The custom rating.
  41. /// </summary>
  42. CustomRating,
  43. /// <summary>
  44. /// The date created of the item.
  45. /// </summary>
  46. DateCreated,
  47. /// <summary>
  48. /// The date last media added.
  49. /// </summary>
  50. DateLastMediaAdded,
  51. /// <summary>
  52. /// Item display preferences.
  53. /// </summary>
  54. DisplayPreferencesId,
  55. /// <summary>
  56. /// The etag.
  57. /// </summary>
  58. Etag,
  59. /// <summary>
  60. /// The external urls.
  61. /// </summary>
  62. ExternalUrls,
  63. /// <summary>
  64. /// Genres.
  65. /// </summary>
  66. Genres,
  67. /// <summary>
  68. /// The home page URL.
  69. /// </summary>
  70. HomePageUrl,
  71. /// <summary>
  72. /// The item counts.
  73. /// </summary>
  74. ItemCounts,
  75. /// <summary>
  76. /// The media source count.
  77. /// </summary>
  78. MediaSourceCount,
  79. /// <summary>
  80. /// The media versions.
  81. /// </summary>
  82. MediaSources,
  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. PlayAccess,
  101. /// <summary>
  102. /// The production locations.
  103. /// </summary>
  104. ProductionLocations,
  105. /// <summary>
  106. /// The ids from IMDb, TMDb, etc.
  107. /// </summary>
  108. ProviderIds,
  109. /// <summary>
  110. /// The aspect ratio of the primary image.
  111. /// </summary>
  112. PrimaryImageAspectRatio,
  113. RecursiveItemCount,
  114. /// <summary>
  115. /// The settings.
  116. /// </summary>
  117. Settings,
  118. /// <summary>
  119. /// The screenshot image tags.
  120. /// </summary>
  121. [Obsolete("Screenshot image type is no longer used.")]
  122. ScreenshotImageTags,
  123. SeriesPrimaryImage,
  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. BasicSyncInfo,
  141. /// <summary>
  142. /// The synchronize information.
  143. /// </summary>
  144. SyncInfo,
  145. /// <summary>
  146. /// The taglines of the item.
  147. /// </summary>
  148. Taglines,
  149. /// <summary>
  150. /// The tags.
  151. /// </summary>
  152. Tags,
  153. /// <summary>
  154. /// The trailer url of the item.
  155. /// </summary>
  156. RemoteTrailers,
  157. /// <summary>
  158. /// The media streams.
  159. /// </summary>
  160. MediaStreams,
  161. /// <summary>
  162. /// The season user data.
  163. /// </summary>
  164. SeasonUserData,
  165. /// <summary>
  166. /// The service name.
  167. /// </summary>
  168. ServiceName,
  169. ThemeSongIds,
  170. ThemeVideoIds,
  171. ExternalEtag,
  172. PresentationUniqueKey,
  173. InheritedParentalRatingValue,
  174. ExternalSeriesId,
  175. SeriesPresentationUniqueKey,
  176. DateLastRefreshed,
  177. DateLastSaved,
  178. RefreshState,
  179. ChannelImage,
  180. EnableMediaSourceDisplay,
  181. Width,
  182. Height,
  183. ExtraIds,
  184. LocalTrailerCount,
  185. IsHD,
  186. SpecialFeatureCount
  187. }
  188. }