ImageType.cs 1.5 KB

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