using System; using System.Collections.Generic; using NzbDrone.Core.Parser.Model; namespace NzbDrone.Core.Indexers { public interface IParseIndexerResponse { IList ParseResponse(IndexerResponse indexerResponse); Action, DateTime?> CookiesUpdater { get; set; } } }