ImageType.cs 193 B

12345678910111213
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. public enum ImageType
  5. {
  6. Primary,
  7. Art,
  8. Backdrop,
  9. Banner,
  10. Logo,
  11. Thumbnail
  12. }
  13. }