ImageType.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. [Obsolete("Screenshot image type is no longer used.")]
  45. Screenshot = 8,
  46. /// <summary>
  47. /// The menu.
  48. /// </summary>
  49. Menu = 9,
  50. /// <summary>
  51. /// The chapter image.
  52. /// </summary>
  53. Chapter = 10,
  54. /// <summary>
  55. /// The box rear.
  56. /// </summary>
  57. BoxRear = 11,
  58. /// <summary>
  59. /// The user profile image.
  60. /// </summary>
  61. Profile = 12
  62. }
  63. }