Skip to content

Commit 3e416a1

Browse files
committed
refactor Configurations
Related to: #300
1 parent 40ade5e commit 3e416a1

File tree

3 files changed

+2
-24
lines changed

3 files changed

+2
-24
lines changed

src/AzureOpenAIProxy.ApiApp/Configurations/AzureSettings.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,4 @@ public class AzureSettings
1919
/// Gets or sets the <see cref="KeyVaultSettings"/> instance.
2020
/// </summary>
2121
public KeyVaultSettings KeyVault { get; set; } = new();
22-
23-
/// <summary>
24-
/// Gets or sets the <see cref="StorageAccountSettings"/> instance.
25-
/// </summary>
26-
public StorageAccountSettings StorageAccount { get; set; } = new();
2722
}

src/AzureOpenAIProxy.ApiApp/Configurations/KeyVaultSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class KeyVaultSettings
1616
public string? VaultUri { get; set; }
1717

1818
/// <summary>
19-
/// Gets or sets the secret name.
19+
/// Gets or sets the secret names.
2020
/// </summary>
21-
public string? SecretName { get; set; }
21+
public IDictionary<string, string> SecretNames { get; set; } = new Dictionary<string, string>();
2222
}

src/AzureOpenAIProxy.ApiApp/Configurations/StorageAccountSettings.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)