MetadataPlugin.cs 452 B

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