MetadataPluginSummary.cs 930 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma warning disable CS1591
  2. using System;
  3. using MediaBrowser.Model.Entities;
  4. namespace MediaBrowser.Model.Configuration
  5. {
  6. public class MetadataPluginSummary
  7. {
  8. /// <summary>
  9. /// Gets or sets the type of the item.
  10. /// </summary>
  11. /// <value>The type of the item.</value>
  12. public string ItemType { get; set; }
  13. /// <summary>
  14. /// Gets or sets the plugins.
  15. /// </summary>
  16. /// <value>The plugins.</value>
  17. public MetadataPlugin[] Plugins { get; set; }
  18. /// <summary>
  19. /// Gets or sets the supported image types.
  20. /// </summary>
  21. /// <value>The supported image types.</value>
  22. public ImageType[] SupportedImageTypes { get; set; }
  23. public MetadataPluginSummary()
  24. {
  25. SupportedImageTypes = Array.Empty<ImageType>();
  26. Plugins = Array.Empty<MetadataPlugin>();
  27. }
  28. }
  29. }