summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Services/Interfaces/ISettingsService.cs
blob: dfdad4cf1f0547bc7c17b3d7540e0fdd5d2bd114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using static PKISharp.WACS.Services.SettingsService;

namespace PKISharp.WACS.Services
{
    public interface ISettingsService
    {   
        string ExePath { get; }
        Uri BaseUri { get; }
        UiSettings UI { get; }
        AcmeSettings Acme { get; }
        ProxySettings Proxy { get; }
        CacheSettings Cache { get; } 
        ScheduledTaskSettings ScheduledTask { get; }
        NotificationSettings Notification { get; }
        SecuritySettings Security { get; }
        ClientSettings Client { get; }
        ValidationSettings Validation { get; }
        StoreSettings Store { get; }
    }
}