29 lines
778 B
C#
29 lines
778 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
using MediaBrowser.Providers.Plugins.TheTvdb;
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
{
|
|
public class TvdbSeasonExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheTVDB";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Tvdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Season;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => null;
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Season;
|
|
}
|
|
}
|