MetadataPlugin.cs 470 B

1234567891011121314151617181920
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.Configuration
  4. {
  5. public class MetadataPlugin
  6. {
  7. /// <summary>
  8. /// Gets or sets the name.
  9. /// </summary>
  10. /// <value>The name.</value>
  11. public string Name { get; set; }
  12. /// <summary>
  13. /// Gets or sets the type.
  14. /// </summary>
  15. /// <value>The type.</value>
  16. public MetadataPluginType Type { get; set; }
  17. }
  18. }