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.
29 lines
686 B
29 lines
686 B
4 years ago
|
#pragma warning disable CS1591
|
||
|
|
||
6 years ago
|
using MediaBrowser.Controller.Entities;
|
||
11 years ago
|
using MediaBrowser.Controller.Providers;
|
||
|
using MediaBrowser.Model.Entities;
|
||
5 years ago
|
using MediaBrowser.Model.Providers;
|
||
11 years ago
|
|
||
|
namespace MediaBrowser.Providers.Music
|
||
|
{
|
||
6 years ago
|
public class ImvdbId : IExternalId
|
||
|
{
|
||
5 years ago
|
/// <inheritdoc />
|
||
5 years ago
|
public string ProviderName => "IMVDb";
|
||
6 years ago
|
|
||
5 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public string Key => "IMVDb";
|
||
6 years ago
|
|
||
5 years ago
|
/// <inheritdoc />
|
||
5 years ago
|
public ExternalIdMediaType? Type => null;
|
||
5 years ago
|
|
||
5 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public string UrlFormatString => null;
|
||
6 years ago
|
|
||
5 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public bool Supports(IHasProviderIds item)
|
||
5 years ago
|
=> item is MusicVideo;
|
||
6 years ago
|
}
|
||
11 years ago
|
}
|