ItemFields.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 date created of the item
  23. /// </summary>
  24. DateCreated,
  25. /// <summary>
  26. /// The display media type
  27. /// </summary>
  28. DisplayMediaType,
  29. /// <summary>
  30. /// Item display preferences
  31. /// </summary>
  32. DisplayPreferencesId,
  33. /// <summary>
  34. /// The end date
  35. /// </summary>
  36. EndDate,
  37. /// <summary>
  38. /// Genres
  39. /// </summary>
  40. Genres,
  41. /// <summary>
  42. /// The home page URL
  43. /// </summary>
  44. HomePageUrl,
  45. /// <summary>
  46. /// Child count, recursive child count, etc
  47. /// </summary>
  48. ItemCounts,
  49. /// <summary>
  50. /// The fields that the server supports indexing on
  51. /// </summary>
  52. IndexOptions,
  53. /// <summary>
  54. /// The item overview
  55. /// </summary>
  56. Overview,
  57. /// <summary>
  58. /// The overview HTML
  59. /// </summary>
  60. OverviewHtml,
  61. /// <summary>
  62. /// The id of the item's parent
  63. /// </summary>
  64. ParentId,
  65. /// <summary>
  66. /// The physical path of the item
  67. /// </summary>
  68. Path,
  69. /// <summary>
  70. /// The list of people for the item
  71. /// </summary>
  72. People,
  73. /// <summary>
  74. /// The production locations
  75. /// </summary>
  76. ProductionLocations,
  77. /// <summary>
  78. /// Imdb, tmdb, etc
  79. /// </summary>
  80. ProviderIds,
  81. /// <summary>
  82. /// The aspect ratio of the primary image
  83. /// </summary>
  84. PrimaryImageAspectRatio,
  85. /// <summary>
  86. /// The revenue
  87. /// </summary>
  88. Revenue,
  89. /// <summary>
  90. /// AirDays, status, SeriesName, etc
  91. /// </summary>
  92. SeriesInfo,
  93. /// <summary>
  94. /// The sort name of the item
  95. /// </summary>
  96. SortName,
  97. /// <summary>
  98. /// The studios of the item
  99. /// </summary>
  100. Studios,
  101. /// <summary>
  102. /// The taglines of the item
  103. /// </summary>
  104. Taglines,
  105. /// <summary>
  106. /// The trailer url of the item
  107. /// </summary>
  108. TrailerUrls,
  109. /// <summary>
  110. /// The user data of the item
  111. /// </summary>
  112. UserData,
  113. /// <summary>
  114. /// The media streams
  115. /// </summary>
  116. MediaStreams
  117. }
  118. }