summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Configuration/AccountArguments.cs
blob: d1f6020a3d3352249f32ccd7258b6c58b05bcd09 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace PKISharp.WACS.Configuration
{
    public class AccountArguments
    {
        public bool AcceptTos { get; set; }
        public string? EmailAddress { get; set; }
        public string? EabKeyIdentifier { get; set; }
        public string? EabKey { get; set; }
        public string? EabAlgorithm { get; set; }
    }
}