CollectionType.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. #pragma warning disable SA1300 // The name of a C# element does not begin with an upper-case letter. - disabled due to legacy requirement.
  2. using Jellyfin.Data.Attributes;
  3. namespace Jellyfin.Data.Enums;
  4. /// <summary>
  5. /// Collection type.
  6. /// </summary>
  7. public enum CollectionType
  8. {
  9. /// <summary>
  10. /// Unknown collection.
  11. /// </summary>
  12. unknown = 0,
  13. /// <summary>
  14. /// Movies collection.
  15. /// </summary>
  16. movies = 1,
  17. /// <summary>
  18. /// Tv shows collection.
  19. /// </summary>
  20. tvshows = 2,
  21. /// <summary>
  22. /// Music collection.
  23. /// </summary>
  24. music = 3,
  25. /// <summary>
  26. /// Music videos collection.
  27. /// </summary>
  28. musicvideos = 4,
  29. /// <summary>
  30. /// Trailers collection.
  31. /// </summary>
  32. trailers = 5,
  33. /// <summary>
  34. /// Home videos collection.
  35. /// </summary>
  36. homevideos = 6,
  37. /// <summary>
  38. /// Box sets collection.
  39. /// </summary>
  40. boxsets = 7,
  41. /// <summary>
  42. /// Books collection.
  43. /// </summary>
  44. books = 8,
  45. /// <summary>
  46. /// Photos collection.
  47. /// </summary>
  48. photos = 9,
  49. /// <summary>
  50. /// Live tv collection.
  51. /// </summary>
  52. livetv = 10,
  53. /// <summary>
  54. /// Playlists collection.
  55. /// </summary>
  56. playlists = 11,
  57. /// <summary>
  58. /// Folders collection.
  59. /// </summary>
  60. folders = 12,
  61. /// <summary>
  62. /// Tv show series collection.
  63. /// </summary>
  64. [OpenApiIgnoreEnum]
  65. tvshowseries = 101,
  66. /// <summary>
  67. /// Tv genres collection.
  68. /// </summary>
  69. [OpenApiIgnoreEnum]
  70. tvgenres = 102,
  71. /// <summary>
  72. /// Tv genre collection.
  73. /// </summary>
  74. [OpenApiIgnoreEnum]
  75. tvgenre = 103,
  76. /// <summary>
  77. /// Tv latest collection.
  78. /// </summary>
  79. [OpenApiIgnoreEnum]
  80. tvlatest = 104,
  81. /// <summary>
  82. /// Tv next up collection.
  83. /// </summary>
  84. [OpenApiIgnoreEnum]
  85. tvnextup = 105,
  86. /// <summary>
  87. /// Tv resume collection.
  88. /// </summary>
  89. [OpenApiIgnoreEnum]
  90. tvresume = 106,
  91. /// <summary>
  92. /// Tv favorite series collection.
  93. /// </summary>
  94. [OpenApiIgnoreEnum]
  95. tvfavoriteseries = 107,
  96. /// <summary>
  97. /// Tv favorite episodes collection.
  98. /// </summary>
  99. [OpenApiIgnoreEnum]
  100. tvfavoriteepisodes = 108,
  101. /// <summary>
  102. /// Latest movies collection.
  103. /// </summary>
  104. [OpenApiIgnoreEnum]
  105. movielatest = 109,
  106. /// <summary>
  107. /// Movies to resume collection.
  108. /// </summary>
  109. [OpenApiIgnoreEnum]
  110. movieresume = 110,
  111. /// <summary>
  112. /// Movie movie collection.
  113. /// </summary>
  114. [OpenApiIgnoreEnum]
  115. moviemovies = 111,
  116. /// <summary>
  117. /// Movie collections collection.
  118. /// </summary>
  119. [OpenApiIgnoreEnum]
  120. moviecollection = 112,
  121. /// <summary>
  122. /// Movie favorites collection.
  123. /// </summary>
  124. [OpenApiIgnoreEnum]
  125. moviefavorites = 113,
  126. /// <summary>
  127. /// Movie genres collection.
  128. /// </summary>
  129. [OpenApiIgnoreEnum]
  130. moviegenres = 114,
  131. /// <summary>
  132. /// Movie genre collection.
  133. /// </summary>
  134. [OpenApiIgnoreEnum]
  135. moviegenre = 115
  136. }