ItemFields.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. 
  2. namespace MediaBrowser.Model.Dto
  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 chapters
  15. /// </summary>
  16. Chapters,
  17. /// <summary>
  18. /// The date created of the item
  19. /// </summary>
  20. DateCreated,
  21. /// <summary>
  22. /// The display media type
  23. /// </summary>
  24. DisplayMediaType,
  25. /// <summary>
  26. /// Item display preferences
  27. /// </summary>
  28. DisplayPreferences,
  29. /// <summary>
  30. /// Genres
  31. /// </summary>
  32. Genres,
  33. /// <summary>
  34. /// Child count, recursive child count, etc
  35. /// </summary>
  36. ItemCounts,
  37. /// <summary>
  38. /// The fields that the server supports indexing on
  39. /// </summary>
  40. IndexOptions,
  41. /// <summary>
  42. /// The item overview
  43. /// </summary>
  44. Overview,
  45. /// <summary>
  46. /// The id of the item's parent
  47. /// </summary>
  48. ParentId,
  49. /// <summary>
  50. /// The physical path of the item
  51. /// </summary>
  52. Path,
  53. /// <summary>
  54. /// The list of people for the item
  55. /// </summary>
  56. People,
  57. /// <summary>
  58. /// Imdb, tmdb, etc
  59. /// </summary>
  60. ProviderIds,
  61. /// <summary>
  62. /// The aspect ratio of the primary image
  63. /// </summary>
  64. PrimaryImageAspectRatio,
  65. /// <summary>
  66. /// AirDays, status, SeriesName, etc
  67. /// </summary>
  68. SeriesInfo,
  69. /// <summary>
  70. /// The sort name of the item
  71. /// </summary>
  72. SortName,
  73. /// <summary>
  74. /// The fields that the server supports sorting on
  75. /// </summary>
  76. SortOptions,
  77. /// <summary>
  78. /// The studios of the item
  79. /// </summary>
  80. Studios,
  81. /// <summary>
  82. /// The taglines of the item
  83. /// </summary>
  84. Taglines,
  85. /// <summary>
  86. /// The trailer url of the item
  87. /// </summary>
  88. TrailerUrls,
  89. /// <summary>
  90. /// The user data of the item
  91. /// </summary>
  92. UserData,
  93. /// <summary>
  94. /// The media streams
  95. /// </summary>
  96. MediaStreams
  97. }
  98. }