MetadataPluginSummary.cs 948 B

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