MetadataPluginSummary.cs 898 B

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