using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Providers.Books.Isbn
{
///
public class IsbnExternalId : IExternalId
{
///
public string ProviderName => "ISBN";
///
public string Key => "ISBN";
///
public ExternalIdMediaType? Type => null;
///
public bool Supports(IHasProviderIds item) => item is Book;
}
}