using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Providers; namespace MediaBrowser.Providers.Plugins.Tmdb.People { /// /// External ID for a TMDB person. /// public class TmdbPersonExternalId : IExternalId { /// public string ProviderName => TmdbUtils.ProviderName; /// public string Key => MetadataProvider.Tmdb.ToString(); /// public ExternalIdMediaType? Type => ExternalIdMediaType.Person; /// public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "person/{0}"; /// public bool Supports(IHasProviderIds item) { return item is Person; } } }