ImageDownloadOptions.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Class ImageDownloadOptions
  6. /// </summary>
  7. public class ImageDownloadOptions
  8. {
  9. /// <summary>
  10. /// Download Art Image
  11. /// </summary>
  12. /// <value><c>true</c> if art; otherwise, <c>false</c>.</value>
  13. public bool Art { get; set; }
  14. /// <summary>
  15. /// Download Logo Image
  16. /// </summary>
  17. /// <value><c>true</c> if logo; otherwise, <c>false</c>.</value>
  18. public bool Logo { get; set; }
  19. /// <summary>
  20. /// Download Primary Image
  21. /// </summary>
  22. /// <value><c>true</c> if primary; otherwise, <c>false</c>.</value>
  23. public bool Primary { get; set; }
  24. /// <summary>
  25. /// Download Backdrop Images
  26. /// </summary>
  27. /// <value><c>true</c> if backdrops; otherwise, <c>false</c>.</value>
  28. public bool Backdrops { get; set; }
  29. /// <summary>
  30. /// Download Disc Image
  31. /// </summary>
  32. /// <value><c>true</c> if disc; otherwise, <c>false</c>.</value>
  33. public bool Disc { get; set; }
  34. /// <summary>
  35. /// Download Thumb Image
  36. /// </summary>
  37. /// <value><c>true</c> if thumb; otherwise, <c>false</c>.</value>
  38. public bool Thumb { get; set; }
  39. /// <summary>
  40. /// Download Banner Image
  41. /// </summary>
  42. /// <value><c>true</c> if banner; otherwise, <c>false</c>.</value>
  43. public bool Banner { get; set; }
  44. /// <summary>
  45. /// Initializes a new instance of the <see cref="ImageDownloadOptions"/> class.
  46. /// </summary>
  47. public ImageDownloadOptions()
  48. {
  49. Art = true;
  50. Logo = true;
  51. Primary = true;
  52. Backdrops = true;
  53. Disc = true;
  54. Thumb = true;
  55. Banner = true;
  56. }
  57. }
  58. }