ItemFields.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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 media source count
  79. /// </summary>
  80. MediaSourceCount,
  81. /// <summary>
  82. /// The media versions
  83. /// </summary>
  84. MediaSources,
  85. OriginalTitle,
  86. /// <summary>
  87. /// The item overview
  88. /// </summary>
  89. Overview,
  90. /// <summary>
  91. /// The id of the item's parent
  92. /// </summary>
  93. ParentId,
  94. /// <summary>
  95. /// The physical path of the item
  96. /// </summary>
  97. Path,
  98. /// <summary>
  99. /// The list of people for the item
  100. /// </summary>
  101. People,
  102. PlayAccess,
  103. /// <summary>
  104. /// The production locations
  105. /// </summary>
  106. ProductionLocations,
  107. /// <summary>
  108. /// Imdb, tmdb, etc
  109. /// </summary>
  110. ProviderIds,
  111. /// <summary>
  112. /// The aspect ratio of the primary image
  113. /// </summary>
  114. PrimaryImageAspectRatio,
  115. RecursiveItemCount,
  116. /// <summary>
  117. /// The settings
  118. /// </summary>
  119. Settings,
  120. /// <summary>
  121. /// The screenshot image tags
  122. /// </summary>
  123. ScreenshotImageTags,
  124. /// <summary>
  125. /// The series genres
  126. /// </summary>
  127. SeriesGenres,
  128. SeriesPrimaryImage,
  129. /// <summary>
  130. /// The series studio
  131. /// </summary>
  132. SeriesStudio,
  133. /// <summary>
  134. /// The sort name of the item
  135. /// </summary>
  136. SortName,
  137. /// <summary>
  138. /// The special episode numbers
  139. /// </summary>
  140. SpecialEpisodeNumbers,
  141. /// <summary>
  142. /// The studios of the item
  143. /// </summary>
  144. Studios,
  145. BasicSyncInfo,
  146. /// <summary>
  147. /// The synchronize information
  148. /// </summary>
  149. SyncInfo,
  150. /// <summary>
  151. /// The taglines of the item
  152. /// </summary>
  153. Taglines,
  154. /// <summary>
  155. /// The tags
  156. /// </summary>
  157. Tags,
  158. /// <summary>
  159. /// The trailer url of the item
  160. /// </summary>
  161. RemoteTrailers,
  162. /// <summary>
  163. /// The media streams
  164. /// </summary>
  165. MediaStreams,
  166. /// <summary>
  167. /// The season user data
  168. /// </summary>
  169. SeasonUserData,
  170. /// <summary>
  171. /// The service name
  172. /// </summary>
  173. ServiceName,
  174. ThemeSongIds,
  175. ThemeVideoIds,
  176. ExternalEtag,
  177. PresentationUniqueKey,
  178. InheritedParentalRatingValue,
  179. ExternalSeriesId,
  180. SeriesPresentationUniqueKey,
  181. DateLastRefreshed,
  182. DateLastSaved,
  183. RefreshState,
  184. ChannelImage
  185. }
  186. }