Skip to content

Commit

Permalink
Make properties public, otherwise binding of settings doesn't work.
Browse files Browse the repository at this point in the history
  • Loading branch information
jooni91 committed Feb 16, 2020
1 parent d6b8e59 commit a538def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ReCaptcha/Configuration/RecaptchaSettings.cs
Expand Up @@ -5,8 +5,8 @@ namespace GSoftware.AspNetCore.ReCaptcha.Configuration
{
internal class RecaptchaSettings
{
internal string SiteKey { get; set; } = string.Empty;
public string SiteKey { get; set; } = string.Empty;

internal string SecretKey { get; set; } = string.Empty;
public string SecretKey { get; set; } = string.Empty;
}
}

0 comments on commit a538def

Please sign in to comment.