Skip to content

Commit

Permalink
fix comment placements
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Carpenter committed Aug 2, 2024
1 parent 73f0d9f commit 3c641a7
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ public class AuthorizationHandlerCredentials
[JsonPropertyName("clientId")]
public string ClientId { get; set; }

// used for managed identity
[JsonPropertyName("managedIdentityClientId")]
public string ManagedIdentityClientId { get; set; }

[JsonPropertyName("scope")]
public string Scope { get; set; }

// used for certificate
[JsonPropertyName("x509Certificate2")]
public X509Certificate2 X509Certificate2 { get; set; }

Expand All @@ -36,11 +38,11 @@ public class AuthorizationHandlerCredentials
[JsonPropertyName("keyVaultUrl")]
public string KeyVaultUrl { get; set; }


// used for HDC
// used for client credentials
[JsonPropertyName("key")]
public string Key { get; set; }

// used for HDC
[JsonPropertyName("url")]
public System.Uri Url { get; set; }

Expand Down

0 comments on commit 3c641a7

Please sign in to comment.