ItemFields.cs 4.4 KB

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