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.
jellyfin/MediaBrowser.Providers/Tmdb/People/TmdbPersonExternalId.cs

21 lines
536 B

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Providers.Tmdb.People
{
public class TmdbPersonExternalId : IExternalId
{
public string Name => TmdbUtils.ProviderName;
public string Key => MetadataProviders.Tmdb.ToString();
5 years ago
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "person/{0}";
public bool Supports(IHasProviderIds item)
{
return item is Person;
}
}
}