using System.Collections.Generic; using NzbDrone.Core.Parser.Model; namespace NzbDrone.Core.Indexers { public interface IParseIndexerResponse { IList ParseResponse(IndexerResponse indexerResponse); } }