mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-06 06:12:52 +01:00
24 lines
645 B
C#
24 lines
645 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Books.ComicVine
|
|
{
|
|
/// <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;
|
|
}
|
|
}
|