jellyfin/MediaBrowser.Providers/Plugins/Tmdb/People/TmdbPersonExternalId.cs

32 lines
871 B
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
2020-05-31 08:23:09 +02:00
namespace MediaBrowser.Providers.Plugins.Tmdb.People
{
/// <summary>
/// External ID for a TMDB person.
/// </summary>
public class TmdbPersonExternalId : IExternalId
{
2019-08-18 14:44:13 +02:00
/// <inheritdoc />
2020-05-17 23:35:43 +02:00
public string ProviderName => TmdbUtils.ProviderName;
2019-08-18 14:44:13 +02:00
/// <inheritdoc />
2020-06-06 21:17:49 +02:00
public string Key => MetadataProvider.Tmdb.ToString();
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Person;
2019-08-18 14:44:13 +02:00
/// <inheritdoc />
2019-08-18 13:34:44 +02:00
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "person/{0}";
2019-08-18 14:44:13 +02:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item)
{
return item is Person;
}
}
}