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.
32 lines
871 B
32 lines
871 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.People
|
|
{
|
|
/// <summary>
|
|
/// External ID for a TMDB person.
|
|
/// </summary>
|
|
public class TmdbPersonExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Tmdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Person;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "person/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
return item is Person;
|
|
}
|
|
}
|
|
}
|