mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
19 lines
571 B
C#
19 lines
571 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common.Http;
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions.Cardigann
|
|
{
|
|
public class CardigannRequest : IndexerRequest
|
|
{
|
|
public Dictionary<string, object> Variables { get; private set; }
|
|
public SearchPathBlock SearchPath { get; private set; }
|
|
|
|
public CardigannRequest(HttpRequest httpRequest, Dictionary<string, object> variables, SearchPathBlock searchPath)
|
|
: base(httpRequest)
|
|
{
|
|
Variables = variables;
|
|
SearchPath = searchPath;
|
|
}
|
|
}
|
|
}
|