Skip to content

Commit

Permalink
Merge pull request #12 from AlexanderGipp/main
Browse files Browse the repository at this point in the history
Made Hostname nullable
  • Loading branch information
BenjaminAbt authored Dec 24, 2021
2 parents ee444e7 + a2ac7f2 commit abfc287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HCaptcha/HCaptchaVerifyResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class HCaptchaVerifyResponse
/// </summary>
/// <remarks>https://docs.hcaptcha.com/#server</remarks>
[JsonPropertyName("hostname")]
public string Hostname { get; set; } = null!;
public string? Hostname { get; set; }

/// <summary>
/// optional: whether the response will be credited
Expand Down

0 comments on commit abfc287

Please sign in to comment.