Skip to content

Commit

Permalink
Fix IdentityVerificationPatchModel.Metadata nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed Jul 13, 2022
1 parent 9cbe95a commit fac83bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ public class IdentityVerificationPatchModel : IHasDescription, IHasMetadata
public virtual string? Description { get; set; }

/// <inheritdoc/>
public Dictionary<string, string> Metadata { get; set; } = new Dictionary<string, string>();
public Dictionary<string, string>? Metadata { get; set; }
}

0 comments on commit fac83bc

Please sign in to comment.