namespace MediaBrowser.Model.Configuration
{
    public class MetadataPlugin
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the type.
        /// 
        /// The type.
        public MetadataPluginType Type { get; set; }
    }
}