#pragma warning disable CS1591 using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Providers; namespace MediaBrowser.Providers.Movies { public class ImdbPersonExternalId : IExternalId { /// public string ProviderName => "IMDb"; /// public string Key => MetadataProvider.Imdb.ToString(); /// public ExternalIdMediaType? Type => ExternalIdMediaType.Person; /// public string UrlFormatString => "https://www.imdb.com/name/{0}"; /// public bool Supports(IHasProviderIds item) => item is Person; } }