File tree 2 files changed +4
-4
lines changed
src/AzureOpenAIProxy.ApiApp/Configurations
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public class StorageAccountSettings
11
11
public const string Name = "StorageAccount" ;
12
12
13
13
/// <summary>
14
- /// Gets or sets the <see cref="TableSettings "/> instance.
14
+ /// Gets or sets the <see cref="TableStorageSettings "/> instance.
15
15
/// </summary>
16
- public TableSettings Table { get ; set ; } = new ( ) ;
16
+ public TableStorageSettings Table { get ; set ; } = new ( ) ;
17
17
}
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ namespace AzureOpenAIProxy.ApiApp.Configurations;
3
3
/// <summary>
4
4
/// This represents the settings entity for Azure Table Stroage.
5
5
/// </summary>
6
- public class TableSettings
6
+ public class TableStorageSettings
7
7
{
8
8
/// <summary>
9
9
/// Gets the name of the configuration settings.
10
10
/// </summary>
11
- public const string Name = "Table " ;
11
+ public const string Name = "TableStorage " ;
12
12
13
13
/// <summary>
14
14
/// Gets or sets the table name.
You can’t perform that action at this time.
0 commit comments