#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 TvdbExternalId : IExternalId
{
///
public string ProviderName => "TheTVDB";
///
public string Key => MetadataProvider.Tvdb.ToString();
///
public ExternalIdMediaType? Type => null;
///
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=series&id={0}";
///
public bool Supports(IHasProviderIds item) => item is Series;
}
}