ItemFields.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. /// <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 service name.
  162. /// </summary>
  163. ServiceName,
  164. ThemeSongIds,
  165. ThemeVideoIds,
  166. ExternalEtag,
  167. PresentationUniqueKey,
  168. InheritedParentalRatingValue,
  169. ExternalSeriesId,
  170. SeriesPresentationUniqueKey,
  171. DateLastRefreshed,
  172. DateLastSaved,
  173. RefreshState,
  174. ChannelImage,
  175. EnableMediaSourceDisplay,
  176. Width,
  177. Height,
  178. ExtraIds,
  179. LocalTrailerCount,
  180. IsHD,
  181. SpecialFeatureCount
  182. }
  183. }