ItemFields.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. 
  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 awards summary
  11. /// </summary>
  12. AwardSummary,
  13. /// <summary>
  14. /// The budget
  15. /// </summary>
  16. Budget,
  17. /// <summary>
  18. /// The chapters
  19. /// </summary>
  20. Chapters,
  21. /// <summary>
  22. /// The critic rating summary
  23. /// </summary>
  24. CriticRatingSummary,
  25. /// <summary>
  26. /// The cumulative run time ticks
  27. /// </summary>
  28. CumulativeRunTimeTicks,
  29. /// <summary>
  30. /// The custom rating
  31. /// </summary>
  32. CustomRating,
  33. /// <summary>
  34. /// The date created of the item
  35. /// </summary>
  36. DateCreated,
  37. /// <summary>
  38. /// Item display preferences
  39. /// </summary>
  40. DisplayPreferencesId,
  41. /// <summary>
  42. /// Genres
  43. /// </summary>
  44. Genres,
  45. /// <summary>
  46. /// The home page URL
  47. /// </summary>
  48. HomePageUrl,
  49. /// <summary>
  50. /// The fields that the server supports indexing on
  51. /// </summary>
  52. IndexOptions,
  53. /// <summary>
  54. /// The keywords
  55. /// </summary>
  56. Keywords,
  57. /// <summary>
  58. /// The metadata settings
  59. /// </summary>
  60. Settings,
  61. /// <summary>
  62. /// The original run time ticks
  63. /// </summary>
  64. OriginalRunTimeTicks,
  65. /// <summary>
  66. /// The item overview
  67. /// </summary>
  68. Overview,
  69. /// <summary>
  70. /// The overview HTML
  71. /// </summary>
  72. OverviewHtml,
  73. /// <summary>
  74. /// The id of the item's parent
  75. /// </summary>
  76. ParentId,
  77. /// <summary>
  78. /// The physical path of the item
  79. /// </summary>
  80. Path,
  81. /// <summary>
  82. /// The list of people for the item
  83. /// </summary>
  84. People,
  85. /// <summary>
  86. /// The production locations
  87. /// </summary>
  88. ProductionLocations,
  89. /// <summary>
  90. /// Imdb, tmdb, etc
  91. /// </summary>
  92. ProviderIds,
  93. /// <summary>
  94. /// The aspect ratio of the primary image
  95. /// </summary>
  96. PrimaryImageAspectRatio,
  97. /// <summary>
  98. /// The revenue
  99. /// </summary>
  100. Revenue,
  101. /// <summary>
  102. /// The screenshot image tags
  103. /// </summary>
  104. ScreenshotImageTags,
  105. /// <summary>
  106. /// The soundtrack ids
  107. /// </summary>
  108. SoundtrackIds,
  109. /// <summary>
  110. /// The sort name of the item
  111. /// </summary>
  112. SortName,
  113. /// <summary>
  114. /// The studios of the item
  115. /// </summary>
  116. Studios,
  117. /// <summary>
  118. /// The taglines of the item
  119. /// </summary>
  120. Taglines,
  121. /// <summary>
  122. /// The tags
  123. /// </summary>
  124. Tags,
  125. /// <summary>
  126. /// The TMDB collection name
  127. /// </summary>
  128. TmdbCollectionName,
  129. /// <summary>
  130. /// The trailer url of the item
  131. /// </summary>
  132. RemoteTrailers,
  133. /// <summary>
  134. /// The media streams
  135. /// </summary>
  136. MediaStreams
  137. }
  138. }