You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
822 B
29 lines
822 B
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
using MediaBrowser.Providers.Plugins.TheTvdb;
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
{
|
|
public class TvdbEpisodeExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheTVDB";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Tvdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Episode;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=episode&id={0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Episode;
|
|
}
|
|
}
|