using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Providers; namespace Jellyfin.Plugin.MetaShark.Providers.ExternalId { /// public class DoubanPersonExternalId : IExternalId { /// public string ProviderName => BaseProvider.DoubanProviderName; /// public string Key => BaseProvider.DoubanProviderId; /// public ExternalIdMediaType? Type => ExternalIdMediaType.Person; /// public string UrlFormatString => "https://movie.douban.com/celebrity/{0}/"; /// public bool Supports(IHasProviderIds item) => item is Person; } }