30 lines
748 B
C#
30 lines
748 B
C#
// <copyright file="ImvdbId.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Music
|
|
{
|
|
public class ImvdbId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "IMVDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => "IMVDb";
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => null;
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
=> item is MusicVideo;
|
|
}
|
|
}
|