ItemFields.cs 4.4 KB

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