2020-06-19 18:24:13 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:03:10 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-21 18:48:15 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-05-17 19:57:24 +00:00
|
|
|
using MediaBrowser.Model.Providers;
|
2014-02-21 18:48:15 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Music
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
public class ImvdbId : IExternalId
|
|
|
|
{
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-17 21:35:43 +00:00
|
|
|
public string ProviderName => "IMVDb";
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-13 20:31:14 +00:00
|
|
|
public string Key => "IMVDb";
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-23 20:08:51 +00:00
|
|
|
public ExternalIdMediaType? Type => null;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-13 20:31:14 +00:00
|
|
|
public string UrlFormatString => null;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
public bool Supports(IHasProviderIds item)
|
2019-09-10 20:37:53 +00:00
|
|
|
=> item is MusicVideo;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2014-02-21 18:48:15 +00:00
|
|
|
}
|