ImageProviderInfo.cs 601 B

123456789101112131415161718192021222324252627
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. using System;
  4. using MediaBrowser.Model.Entities;
  5. namespace MediaBrowser.Model.Providers
  6. {
  7. /// <summary>
  8. /// Class ImageProviderInfo.
  9. /// </summary>
  10. public class ImageProviderInfo
  11. {
  12. /// <summary>
  13. /// Gets or sets the name.
  14. /// </summary>
  15. /// <value>The name.</value>
  16. public string Name { get; set; }
  17. public ImageType[] SupportedImages { get; set; }
  18. public ImageProviderInfo()
  19. {
  20. SupportedImages = Array.Empty<ImageType>();
  21. }
  22. }
  23. }