using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Providers
{
    /// 
    /// Interface IImageProvider.
    /// 
    public interface IImageProvider
    {
        /// 
        /// Gets the name.
        /// 
        /// The name.
        string Name { get; }
        /// 
        /// Supports the specified item.
        /// 
        /// The item.
        /// true if the provider supports the item.
        bool Supports(BaseItem item);
    }
}