blob: 74109f512bb3bb88f17861b51f615aad058417ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace PKISharp.WACS.Plugins.ValidationPlugins.Dns
{
internal class ScriptArguments
{
public string? DnsScript { get; set; }
public string? DnsCreateScript { get; set; }
public string? DnsCreateScriptArguments { get; set; }
public string? DnsDeleteScript { get; set; }
public string? DnsDeleteScriptArguments { get; set; }
}
}
|