28 lines
799 B
C#
28 lines
799 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
|
{
|
|
public class AudioDbOtherAlbumExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheAudioDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.AudioDbAlbum.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Album;
|
|
|
|
/// <inheritdoc />
|
|
public string? UrlFormatString => "https://www.theaudiodb.com/album/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Audio;
|
|
}
|
|
}
|