blob: 7092cdd4dbf09d596ce03e1da2ab28a586344015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using PKISharp.WACS.DomainObjects;
using PKISharp.WACS.Services;
namespace PKISharp.WACS.Plugins.ValidationPlugins
{
internal class HttpValidationParameters
{
public ISettingsService Settings { get; private set; }
public Renewal Renewal { get; private set; }
public RunLevel RunLevel { get; private set; }
public ILogService LogService { get; private set; }
public IInputService InputService { get; private set; }
public ProxyService ProxyService { get; private set; }
public HttpValidationParameters(
ILogService log,
IInputService input,
ISettingsService settings,
ProxyService proxy,
Renewal renewal,
RunLevel runLevel)
{
Renewal = renewal;
RunLevel = runLevel;
Settings = settings;
ProxyService = proxy;
LogService = log;
InputService = input;
}
}
}
|