You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
975 B
33 lines
975 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
|
|
{
|
|
/// <summary>
|
|
/// External ID for a TMDB box set.
|
|
/// </summary>
|
|
public class TmdbBoxSetExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.TmdbCollection.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.BoxSet;
|
|
|
|
/// <inheritdoc />
|
|
public string? UrlFormatString => TmdbUtils.BaseTmdbUrl + "collection/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
return item is Movie || item is MusicVideo || item is Trailer;
|
|
}
|
|
}
|
|
}
|