using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Configuration
{
    public class MetadataPluginSummary
    {
        /// 
        /// Gets or sets the type of the item.
        /// 
        /// The type of the item.
        public string ItemType { get; set; }
        /// 
        /// Gets or sets the plugins.
        /// 
        /// The plugins.
        public List Plugins { get; set; }
        /// 
        /// Gets or sets the supported image types.
        /// 
        /// The supported image types.
        public List SupportedImageTypes { get; set; }
        public MetadataPluginSummary()
        {
            SupportedImageTypes = new List();
            Plugins = new List();
        }
    }
}