aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/TV/TvExternalIds.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/TV/TvExternalIds.cs')
-rw-r--r--MediaBrowser.Providers/TV/TvExternalIds.cs63
1 files changed, 0 insertions, 63 deletions
diff --git a/MediaBrowser.Providers/TV/TvExternalIds.cs b/MediaBrowser.Providers/TV/TvExternalIds.cs
deleted file mode 100644
index 3f889fbbec..0000000000
--- a/MediaBrowser.Providers/TV/TvExternalIds.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-using MediaBrowser.Controller.Entities.TV;
-using MediaBrowser.Controller.Providers;
-using MediaBrowser.Model.Entities;
-using MediaBrowser.Providers.TV.TheTVDB;
-
-namespace MediaBrowser.Providers.TV
-{
- public class Zap2ItExternalId : IExternalId
- {
- public string Name => "Zap2It";
-
- public string Key => MetadataProviders.Zap2It.ToString();
-
- public string UrlFormatString => "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}";
-
- public bool Supports(IHasProviderIds item)
- {
- return item is Series;
- }
- }
-
- public class TvdbExternalId : IExternalId
- {
- public string Name => "TheTVDB";
-
- public string Key => MetadataProviders.Tvdb.ToString();
-
- public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=series&id={0}";
-
- public bool Supports(IHasProviderIds item)
- {
- return item is Series;
- }
- }
-
- public class TvdbSeasonExternalId : IExternalId
- {
- public string Name => "TheTVDB";
-
- public string Key => MetadataProviders.Tvdb.ToString();
-
- public string UrlFormatString => null;
-
- public bool Supports(IHasProviderIds item)
- {
- return item is Season;
- }
- }
-
- public class TvdbEpisodeExternalId : IExternalId
- {
- public string Name => "TheTVDB";
-
- public string Key => MetadataProviders.Tvdb.ToString();
-
- public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=episode&id={0}";
-
- public bool Supports(IHasProviderIds item)
- {
- return item is Episode;
- }
- }
-}