using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Providers
{
///
/// Interface IImageProvider
///
public interface IImageProvider
{
///
/// Gets the name.
///
/// The name.
string Name { get; }
///
/// Supportses the specified item.
///
/// The item.
/// true if XXXX, false otherwise
bool Supports(IHasImages item);
}
}