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.
25 lines
639 B
25 lines
639 B
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Providers.Tmdb.TV
|
|
{
|
|
public class TmdbSeriesExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string Name => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProviders.Tmdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "tv/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
return item is Series;
|
|
}
|
|
}
|
|
}
|