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. /// Audio properties
  11. /// </summary>
  12. AudioInfo,
  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 custom rating
  27. /// </summary>
  28. CustomRating,
  29. /// <summary>
  30. /// The date created of the item
  31. /// </summary>
  32. DateCreated,
  33. /// <summary>
  34. /// The display media type
  35. /// </summary>
  36. DisplayMediaType,
  37. /// <summary>
  38. /// Item display preferences
  39. /// </summary>
  40. DisplayPreferencesId,
  41. /// <summary>
  42. /// The end date
  43. /// </summary>
  44. EndDate,
  45. /// <summary>
  46. /// Genres
  47. /// </summary>
  48. Genres,
  49. /// <summary>
  50. /// The home page URL
  51. /// </summary>
  52. HomePageUrl,
  53. /// <summary>
  54. /// Child count, recursive child count, etc
  55. /// </summary>
  56. ItemCounts,
  57. /// <summary>
  58. /// The fields that the server supports indexing on
  59. /// </summary>
  60. IndexOptions,
  61. /// <summary>
  62. /// The metadata settings
  63. /// </summary>
  64. MetadataSettings,
  65. /// <summary>
  66. /// The original run time ticks
  67. /// </summary>
  68. OriginalRunTimeTicks,
  69. /// <summary>
  70. /// The item overview
  71. /// </summary>
  72. Overview,
  73. /// <summary>
  74. /// The overview HTML
  75. /// </summary>
  76. OverviewHtml,
  77. /// <summary>
  78. /// The id of the item's parent
  79. /// </summary>
  80. ParentId,
  81. /// <summary>
  82. /// The physical path of the item
  83. /// </summary>
  84. Path,
  85. /// <summary>
  86. /// The list of people for the item
  87. /// </summary>
  88. People,
  89. /// <summary>
  90. /// The production locations
  91. /// </summary>
  92. ProductionLocations,
  93. /// <summary>
  94. /// Imdb, tmdb, etc
  95. /// </summary>
  96. ProviderIds,
  97. /// <summary>
  98. /// The aspect ratio of the primary image
  99. /// </summary>
  100. PrimaryImageAspectRatio,
  101. /// <summary>
  102. /// The revenue
  103. /// </summary>
  104. Revenue,
  105. /// <summary>
  106. /// AirDays, status, SeriesName, etc
  107. /// </summary>
  108. SeriesInfo,
  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 trailer url of the item
  127. /// </summary>
  128. RemoteTrailers,
  129. /// <summary>
  130. /// The user data of the item
  131. /// </summary>
  132. UserData,
  133. /// <summary>
  134. /// The media streams
  135. /// </summary>
  136. MediaStreams
  137. }
  138. }