diff options
author | Wouter Tinus <win.acme.simple@gmail.com> | 2019-12-14 09:02:22 +0100 |
---|---|---|
committer | Wouter Tinus <win.acme.simple@gmail.com> | 2019-12-14 09:02:22 +0100 |
commit | 598a42efffcd11b308bfc7cb2a15e021a99e442d (patch) | |
tree | 8b7afedd3d662fac603a8b7c22791b67b6372b28 /src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs | |
parent | f084f256ed0fda699acdb86c51f95b1e5478c34f (diff) | |
download | letsencrypt-win-simple-598a42efffcd11b308bfc7cb2a15e021a99e442d.zip letsencrypt-win-simple-598a42efffcd11b308bfc7cb2a15e021a99e442d.tar.gz letsencrypt-win-simple-598a42efffcd11b308bfc7cb2a15e021a99e442d.tar.bz2 |
null annotations progress
Diffstat (limited to 'src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs')
-rw-r--r-- | src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs b/src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs index 35efe49..9579d47 100644 --- a/src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs +++ b/src/main.lib/Plugins/StorePlugins/CentralSsl/CentralSslOptions.cs @@ -12,13 +12,13 @@ namespace PKISharp.WACS.Plugins.StorePlugins /// <summary> /// Path to the Central Ssl store /// </summary> - public string Path { get; set; } + public string? Path { get; set; } /// <summary> /// PfxFile password /// </summary> [JsonProperty(propertyName: "PfxPasswordProtected")] - public ProtectedString PfxPassword { get; set; } + public ProtectedString? PfxPassword { get; set; } internal const string PluginName = "CentralSsl"; public override string Name => PluginName; |