mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
11 lines
239 B
C#
11 lines
239 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IParseIndexerResponse
|
|
{
|
|
IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse);
|
|
}
|
|
}
|