ItemFields.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. /// <summary>
  5. /// Used to control the data that gets attached to DtoBaseItems.
  6. /// </summary>
  7. public enum ItemFields
  8. {
  9. /// <summary>
  10. /// The air time.
  11. /// </summary>
  12. AirTime,
  13. /// <summary>
  14. /// The can delete.
  15. /// </summary>
  16. CanDelete,
  17. /// <summary>
  18. /// The can download.
  19. /// </summary>
  20. CanDownload,
  21. /// <summary>
  22. /// The channel information.
  23. /// </summary>
  24. ChannelInfo,
  25. /// <summary>
  26. /// The chapters.
  27. /// </summary>
  28. Chapters,
  29. ChildCount,
  30. /// <summary>
  31. /// The cumulative run time ticks.
  32. /// </summary>
  33. CumulativeRunTimeTicks,
  34. /// <summary>
  35. /// The custom rating.
  36. /// </summary>
  37. CustomRating,
  38. /// <summary>
  39. /// The date created of the item.
  40. /// </summary>
  41. DateCreated,
  42. /// <summary>
  43. /// The date last media added.
  44. /// </summary>
  45. DateLastMediaAdded,
  46. /// <summary>
  47. /// Item display preferences.
  48. /// </summary>
  49. DisplayPreferencesId,
  50. /// <summary>
  51. /// The etag.
  52. /// </summary>
  53. Etag,
  54. /// <summary>
  55. /// The external urls.
  56. /// </summary>
  57. ExternalUrls,
  58. /// <summary>
  59. /// Genres.
  60. /// </summary>
  61. Genres,
  62. /// <summary>
  63. /// The home page URL.
  64. /// </summary>
  65. HomePageUrl,
  66. /// <summary>
  67. /// The item counts.
  68. /// </summary>
  69. ItemCounts,
  70. /// <summary>
  71. /// The media source count.
  72. /// </summary>
  73. MediaSourceCount,
  74. /// <summary>
  75. /// The media versions.
  76. /// </summary>
  77. MediaSources,
  78. OriginalTitle,
  79. /// <summary>
  80. /// The item overview.
  81. /// </summary>
  82. Overview,
  83. /// <summary>
  84. /// The id of the item's parent.
  85. /// </summary>
  86. ParentId,
  87. /// <summary>
  88. /// The physical path of the item.
  89. /// </summary>
  90. Path,
  91. /// <summary>
  92. /// The list of people for the item.
  93. /// </summary>
  94. People,
  95. PlayAccess,
  96. /// <summary>
  97. /// The production locations.
  98. /// </summary>
  99. ProductionLocations,
  100. /// <summary>
  101. /// Imdb, tmdb, etc.
  102. /// </summary>
  103. ProviderIds,
  104. /// <summary>
  105. /// The aspect ratio of the primary image.
  106. /// </summary>
  107. PrimaryImageAspectRatio,
  108. RecursiveItemCount,
  109. /// <summary>
  110. /// The settings.
  111. /// </summary>
  112. Settings,
  113. /// <summary>
  114. /// The screenshot image tags.
  115. /// </summary>
  116. ScreenshotImageTags,
  117. SeriesPrimaryImage,
  118. /// <summary>
  119. /// The series studio.
  120. /// </summary>
  121. SeriesStudio,
  122. /// <summary>
  123. /// The sort name of the item.
  124. /// </summary>
  125. SortName,
  126. /// <summary>
  127. /// The special episode numbers.
  128. /// </summary>
  129. SpecialEpisodeNumbers,
  130. /// <summary>
  131. /// The studios of the item.
  132. /// </summary>
  133. Studios,
  134. BasicSyncInfo,
  135. /// <summary>
  136. /// The synchronize information.
  137. /// </summary>
  138. SyncInfo,
  139. /// <summary>
  140. /// The taglines of the item.
  141. /// </summary>
  142. Taglines,
  143. /// <summary>
  144. /// The tags.
  145. /// </summary>
  146. Tags,
  147. /// <summary>
  148. /// The trailer url of the item.
  149. /// </summary>
  150. RemoteTrailers,
  151. /// <summary>
  152. /// The media streams.
  153. /// </summary>
  154. MediaStreams,
  155. /// <summary>
  156. /// The season user data.
  157. /// </summary>
  158. SeasonUserData,
  159. /// <summary>
  160. /// The service name.
  161. /// </summary>
  162. ServiceName,
  163. ThemeSongIds,
  164. ThemeVideoIds,
  165. ExternalEtag,
  166. PresentationUniqueKey,
  167. InheritedParentalRatingValue,
  168. ExternalSeriesId,
  169. SeriesPresentationUniqueKey,
  170. DateLastRefreshed,
  171. DateLastSaved,
  172. RefreshState,
  173. ChannelImage,
  174. EnableMediaSourceDisplay,
  175. Width,
  176. Height,
  177. ExtraIds,
  178. LocalTrailerCount,
  179. IsHD,
  180. SpecialFeatureCount
  181. }
  182. }