ItemFields.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  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. ScreenshotImageTags,
  118. SeriesPrimaryImage,
  119. /// <summary>
  120. /// The series studio
  121. /// </summary>
  122. SeriesStudio,
  123. /// <summary>
  124. /// The sort name of the item
  125. /// </summary>
  126. SortName,
  127. /// <summary>
  128. /// The special episode numbers
  129. /// </summary>
  130. SpecialEpisodeNumbers,
  131. /// <summary>
  132. /// The studios of the item
  133. /// </summary>
  134. Studios,
  135. BasicSyncInfo,
  136. /// <summary>
  137. /// The synchronize information
  138. /// </summary>
  139. SyncInfo,
  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. }