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