summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Configuration/NetworkCredentialArguments.cs
blob: 57742496e4f326e5357e416b3ad650433d841cb9 (plain)
1
2
3
4
5
6
7
8
namespace PKISharp.WACS.Configuration
{
    internal class NetworkCredentialArguments
    {
        public string? UserName { get; set; }
        public string? Password { get; set; }
    }
}