summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Plugins/InstallationPlugins/IISWeb/IISWebArguments.cs
blob: 2981257a64f4ce28266119ca86f9616881694804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using PKISharp.WACS.Services;
using System.Net;

namespace PKISharp.WACS.Plugins.InstallationPlugins
{
    internal class IISWebArguments
    {
        public long? InstallationSiteId { get; set; }
        public string? SSLPort { get; set; }
        public string? SSLIPAddress { get; set; }

    }
}