1 2 3 4 5 6 7 8 9 10 11 12
namespace PKISharp.WACS.Plugins.TargetPlugins { internal class IISArguments { public string? SiteId { get; set; } public string? Host { get; set; } public string? Pattern { get; set; } public string? Regex { get; set; } public string? CommonName { get; set; } public string? ExcludeBindings { get; set; } } }