ItemFields.cs 3.2 KB

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