Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 1dc50d8

Browse files
committed
Fix tests
1 parent ad33a1e commit 1dc50d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/DPoP/DPoPProofPayload.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ namespace IdentityModel.OidcClient.DPoP;
1414
internal class DPoPProofPayload
1515
{
1616
[JsonPropertyName(JwtClaimTypes.JwtId)]
17-
internal string JwtId { get; set; } = default!;
17+
public string JwtId { get; set; } = default!;
1818
[JsonPropertyName(JwtClaimTypes.DPoPHttpMethod)]
19-
internal string DPoPHttpMethod { get; set; } = default!;
19+
public string DPoPHttpMethod { get; set; } = default!;
2020
[JsonPropertyName(JwtClaimTypes.DPoPHttpUrl)]
21-
internal string DPoPHttpUrl { get; set; } = default!;
21+
public string DPoPHttpUrl { get; set; } = default!;
2222
[JsonPropertyName(JwtClaimTypes.IssuedAt)]
23-
internal long IssuedAt { get; set; }
23+
public long IssuedAt { get; set; }
2424
[JsonPropertyName(JwtClaimTypes. DPoPAccessTokenHash)]
25-
internal string? DPoPAccessTokenHash { get; set; }
25+
public string? DPoPAccessTokenHash { get; set; }
2626
[JsonPropertyName(JwtClaimTypes. Nonce)]
27-
internal string? Nonce { get; set; }
27+
public string? Nonce { get; set; }
2828
}

0 commit comments

Comments
 (0)