2
0

ItemFields.cs 4.6 KB

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