ImageType.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Enum ImageType.
  6. /// </summary>
  7. public enum ImageType
  8. {
  9. /// <summary>
  10. /// The primary.
  11. /// </summary>
  12. Primary = 0,
  13. /// <summary>
  14. /// The art.
  15. /// </summary>
  16. Art = 1,
  17. /// <summary>
  18. /// The backdrop.
  19. /// </summary>
  20. Backdrop = 2,
  21. /// <summary>
  22. /// The banner.
  23. /// </summary>
  24. Banner = 3,
  25. /// <summary>
  26. /// The logo.
  27. /// </summary>
  28. Logo = 4,
  29. /// <summary>
  30. /// The thumb.
  31. /// </summary>
  32. Thumb = 5,
  33. /// <summary>
  34. /// The disc.
  35. /// </summary>
  36. Disc = 6,
  37. /// <summary>
  38. /// The box.
  39. /// </summary>
  40. Box = 7,
  41. /// <summary>
  42. /// The screenshot.
  43. /// </summary>
  44. /// <remarks>
  45. /// This enum value is obsolete.
  46. /// XmlSerializer does not serialize/deserialize objects that are marked as [Obsolete].
  47. /// </remarks>
  48. Screenshot = 8,
  49. /// <summary>
  50. /// The menu.
  51. /// </summary>
  52. Menu = 9,
  53. /// <summary>
  54. /// The chapter image.
  55. /// </summary>
  56. Chapter = 10,
  57. /// <summary>
  58. /// The box rear.
  59. /// </summary>
  60. BoxRear = 11,
  61. /// <summary>
  62. /// The user profile image.
  63. /// </summary>
  64. Profile = 12
  65. }
  66. }