// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Providers.Plugins.Tmdb.People { using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Providers; /// /// 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 bool Supports(IHasProviderIds item) { return item is Person; } } }