Skip to content

Commit

Permalink
removed wrong constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
simen-rekkedal committed Apr 25, 2024
1 parent c24a0bf commit 641a3c7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@

public class ClientSettings
{
public ClientSettings() { }

public ClientSettings(string issuer, string app, string certificateName)
{
Issuer = issuer;
App = app;
CertificateName = certificateName;
}

public string Issuer { get; set; }

public string App { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

public class KeyVaultSettings
{
public KeyVaultSettings() { }

public KeyVaultSettings(string secretUri)
{
SecretUri = secretUri;
}

public string SecretUri { get; set; }
}

0 comments on commit 641a3c7

Please sign in to comment.