ItemFields.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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. ChildCount,
  31. /// <summary>
  32. /// The cumulative run time ticks.
  33. /// </summary>
  34. CumulativeRunTimeTicks,
  35. /// <summary>
  36. /// The custom rating.
  37. /// </summary>
  38. CustomRating,
  39. /// <summary>
  40. /// The date created of the item.
  41. /// </summary>
  42. DateCreated,
  43. /// <summary>
  44. /// The date last media added.
  45. /// </summary>
  46. DateLastMediaAdded,
  47. /// <summary>
  48. /// Item display preferences.
  49. /// </summary>
  50. DisplayPreferencesId,
  51. /// <summary>
  52. /// The etag.
  53. /// </summary>
  54. Etag,
  55. /// <summary>
  56. /// The external urls.
  57. /// </summary>
  58. ExternalUrls,
  59. /// <summary>
  60. /// Genres.
  61. /// </summary>
  62. Genres,
  63. /// <summary>
  64. /// The home page URL.
  65. /// </summary>
  66. HomePageUrl,
  67. /// <summary>
  68. /// The item counts.
  69. /// </summary>
  70. ItemCounts,
  71. /// <summary>
  72. /// The media source count.
  73. /// </summary>
  74. MediaSourceCount,
  75. /// <summary>
  76. /// The media versions.
  77. /// </summary>
  78. MediaSources,
  79. OriginalTitle,
  80. /// <summary>
  81. /// The item overview.
  82. /// </summary>
  83. Overview,
  84. /// <summary>
  85. /// The id of the item's parent.
  86. /// </summary>
  87. ParentId,
  88. /// <summary>
  89. /// The physical path of the item.
  90. /// </summary>
  91. Path,
  92. /// <summary>
  93. /// The list of people for the item.
  94. /// </summary>
  95. People,
  96. PlayAccess,
  97. /// <summary>
  98. /// The production locations.
  99. /// </summary>
  100. ProductionLocations,
  101. /// <summary>
  102. /// Imdb, tmdb, etc.
  103. /// </summary>
  104. ProviderIds,
  105. /// <summary>
  106. /// The aspect ratio of the primary image.
  107. /// </summary>
  108. PrimaryImageAspectRatio,
  109. RecursiveItemCount,
  110. /// <summary>
  111. /// The settings.
  112. /// </summary>
  113. Settings,
  114. /// <summary>
  115. /// The screenshot image tags.
  116. /// </summary>
  117. [Obsolete("Screenshot image type is no longer used.")]
  118. ScreenshotImageTags,
  119. SeriesPrimaryImage,
  120. /// <summary>
  121. /// The series studio.
  122. /// </summary>
  123. SeriesStudio,
  124. /// <summary>
  125. /// The sort name of the item.
  126. /// </summary>
  127. SortName,
  128. /// <summary>
  129. /// The special episode numbers.
  130. /// </summary>
  131. SpecialEpisodeNumbers,
  132. /// <summary>
  133. /// The studios of the item.
  134. /// </summary>
  135. Studios,
  136. BasicSyncInfo,
  137. /// <summary>
  138. /// The synchronize information.
  139. /// </summary>
  140. SyncInfo,
  141. /// <summary>
  142. /// The taglines of the item.
  143. /// </summary>
  144. Taglines,
  145. /// <summary>
  146. /// The tags.
  147. /// </summary>
  148. Tags,
  149. /// <summary>
  150. /// The trailer url of the item.
  151. /// </summary>
  152. RemoteTrailers,
  153. /// <summary>
  154. /// The media streams.
  155. /// </summary>
  156. MediaStreams,
  157. /// <summary>
  158. /// The season user data.
  159. /// </summary>
  160. SeasonUserData,
  161. /// <summary>
  162. /// The service name.
  163. /// </summary>
  164. ServiceName,
  165. ThemeSongIds,
  166. ThemeVideoIds,
  167. ExternalEtag,
  168. PresentationUniqueKey,
  169. InheritedParentalRatingValue,
  170. ExternalSeriesId,
  171. SeriesPresentationUniqueKey,
  172. DateLastRefreshed,
  173. DateLastSaved,
  174. RefreshState,
  175. ChannelImage,
  176. EnableMediaSourceDisplay,
  177. Width,
  178. Height,
  179. ExtraIds,
  180. LocalTrailerCount,
  181. IsHD,
  182. SpecialFeatureCount
  183. }
  184. }