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.
23 lines
532 B
23 lines
532 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Providers.Music
|
|
{
|
|
public class ImvdbId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string Name => "IMVDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => "IMVDb";
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => null;
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
=> item is MusicVideo;
|
|
}
|
|
}
|