2025-11-21 09:58:34 +09:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
|
|
2026-05-16 18:51:30 +02:00
|
|
|
namespace MediaBrowser.Providers.Books.ComicVine
|
2025-11-21 09:58:34 +09:00
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public class ComicVinePersonExternalId : IExternalId
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string ProviderName => "Comic Vine";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Key => "ComicVine";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Person;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public bool Supports(IHasProviderIds item) => item is Person;
|
|
|
|
|
}
|
|
|
|
|
}
|