| 12345678910111213141516171819202122232425262728293031 | 
							- using MediaBrowser.Controller.Entities.TV;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Model.Entities;
 
- using MediaBrowser.Model.Providers;
 
- namespace MediaBrowser.Providers.Plugins.Tmdb.TV
 
- {
 
-     /// <summary>
 
-     /// External ID for a TMDB series.
 
-     /// </summary>
 
-     public class TmdbSeriesExternalId : IExternalId
 
-     {
 
-         /// <inheritdoc />
 
-         public string ProviderName => TmdbUtils.ProviderName;
 
-         /// <inheritdoc />
 
-         public string Key => MetadataProvider.Tmdb.ToString();
 
-         /// <inheritdoc />
 
-         public ExternalIdMediaType? Type => ExternalIdMediaType.Series;
 
-         /// <inheritdoc />
 
-         public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "tv/{0}";
 
-         /// <inheritdoc />
 
-         public bool Supports(IHasProviderIds item)
 
-         {
 
-             return item is Series;
 
-         }
 
-     }
 
- }
 
 
  |