File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
src/AzureOpenAIProxy.ApiApp/Configurations Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,9 @@ 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 ( ) ;
2227}
Original file line number Diff line number Diff line change 1+ namespace AzureOpenAIProxy . ApiApp . Configurations ;
2+
3+ /// <summary>
4+ /// This represents the settings entity for Table Storage.
5+ /// </summary>
6+ public class StorageAccountSettings
7+ {
8+ /// <summary>
9+ /// Gets the name of the configuration settings.
10+ /// </summary>
11+ public const string Name = "StorageAccount" ;
12+
13+ /// <summary>
14+ /// Gets or sets the connection string.
15+ /// </summary>
16+ public string ? ConnectionString { get ; set ; }
17+
18+ /// <summary>
19+ /// Gets or sets the container name.
20+ /// </summary>
21+ public string ? ContainerName { get ; set ; }
22+ }
You can’t perform that action at this time.
0 commit comments