Skip to content

Commit

Permalink
fix: multiFactorAuths -> multiFactorAuths[] (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
souress authored Jul 21, 2023
1 parent 50b578b commit 710ee88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Casdoor.Client/Models/CasdoorUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ public class CasdoorUser
public bool? MfaEmailEnabled { get; set; }

[JsonPropertyName("multiFactorAuths")]
public CasdoorMfaProps? MultiFactorAuths { get; set; }
public IEnumerable<CasdoorMfaProps>? MultiFactorAuths { get; set; }

[JsonPropertyName("ldap")]
public string? Ldap { get; set; }
Expand Down

0 comments on commit 710ee88

Please sign in to comment.