ItemFields.cs 3.1 KB

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