summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Plugins/TargetPlugins/IIS/IISArguments.cs
blob: 6d4373dedec269a9414aaaf927fc48fcdfb3996f (plain)
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; }
    }
}