2019-08-18 11:20:52 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
2020-05-31 06:23:09 +00:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.People
|
2019-08-18 11:20:52 +00:00
|
|
|
{
|
|
|
|
public class TmdbPersonExternalId : IExternalId
|
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2019-08-18 11:20:52 +00:00
|
|
|
public string Name => TmdbUtils.ProviderName;
|
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2020-06-06 19:17:49 +00:00
|
|
|
public string Key => MetadataProvider.Tmdb.ToString();
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2019-08-18 11:34:44 +00:00
|
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "person/{0}";
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2019-08-18 11:20:52 +00:00
|
|
|
public bool Supports(IHasProviderIds item)
|
|
|
|
{
|
|
|
|
return item is Person;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|