mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 11:59:02 -07:00
27 lines
678 B
C#
27 lines
678 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.TV
|
|
{
|
|
public class TmdbSeriesExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string Name => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Tmdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "tv/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
return item is Series;
|
|
}
|
|
}
|
|
}
|