aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs')
-rw-r--r--MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs b/MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs
deleted file mode 100644
index 02d3b36974..0000000000
--- a/MediaBrowser.Providers/Plugins/GoogleBooks/GoogleBooksExternalId.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using MediaBrowser.Controller.Entities;
-using MediaBrowser.Controller.Providers;
-using MediaBrowser.Model.Entities;
-using MediaBrowser.Model.Providers;
-
-namespace MediaBrowser.Providers.Plugins.GoogleBooks
-{
- /// <inheritdoc />
- public class GoogleBooksExternalId : IExternalId
- {
- /// <inheritdoc />
- public string ProviderName => "Google Books";
-
- /// <inheritdoc />
- public string Key => "GoogleBooks";
-
- /// <inheritdoc />
- public ExternalIdMediaType? Type => null;
-
- /// <inheritdoc />
- public bool Supports(IHasProviderIds item) => item is Book;
- }
-}