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

29 lines
787 B
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Providers.Tmdb.People
{
public class TmdbPersonExternalId : IExternalId
{
2019-08-18 12:44:13 +00:00
/// <inheritdoc />
2020-05-17 21:35:43 +00:00
public string ProviderName => TmdbUtils.ProviderName;
2019-08-18 12:44:13 +00:00
/// <inheritdoc />
public string Key => MetadataProviders.Tmdb.ToString();
/// <inheritdoc />
public ExternalIdMediaType Type => ExternalIdMediaType.Person;
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 12:44:13 +00:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item)
{
return item is Person;
}
}
}