29 lines
778 B
C#
29 lines
778 B
C#
// <copyright file="Zap2ItExternalId.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
{
|
|
public class Zap2ItExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "Zap2It";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Zap2It.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => null;
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Series;
|
|
}
|
|
}
|