Radarr/src/NzbDrone.Core/Indexers/IProcessIndexerResponse.cs

13 lines
337 B
C#

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