Skip to content

Commit

Permalink
Fixed failing tests with explicit json prop name
Browse files Browse the repository at this point in the history
  • Loading branch information
pingu2k4 committed Aug 7, 2024
1 parent f205d24 commit 050dd73
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using PinguApps.Appwrite.Shared.Requests.Validators;
using System.Text.Json.Serialization;
using PinguApps.Appwrite.Shared.Requests.Validators;

namespace PinguApps.Appwrite.Shared.Requests;
public class VerifyAuthenticatorRequest : BaseRequest<VerifyAuthenticatorRequest, VerifyAuthenticatorRequestValidator>
{
[JsonPropertyName("otp")]
public string Otp { get; set; } = string.Empty;
}

0 comments on commit 050dd73

Please sign in to comment.