Skip to content

Commit 29b9486

Browse files
committed
refactor TableSettings to TableStorageSettings
Related to: aliencube#319
1 parent 55caf06 commit 29b9486

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/AzureOpenAIProxy.ApiApp/Configurations/StorageAccountSettings.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class StorageAccountSettings
1111
public const string Name = "StorageAccount";
1212

1313
/// <summary>
14-
/// Gets or sets the <see cref="TableSettings"/> instance.
14+
/// Gets or sets the <see cref="TableStorageSettings"/> instance.
1515
/// </summary>
16-
public TableSettings Table { get; set; } = new();
16+
public TableStorageSettings Table { get; set; } = new();
1717
}

src/AzureOpenAIProxy.ApiApp/Configurations/TableSettings.cs src/AzureOpenAIProxy.ApiApp/Configurations/TableStorageSettings.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ namespace AzureOpenAIProxy.ApiApp.Configurations;
33
/// <summary>
44
/// This represents the settings entity for Azure Table Stroage.
55
/// </summary>
6-
public class TableSettings
6+
public class TableStorageSettings
77
{
88
/// <summary>
99
/// Gets the name of the configuration settings.
1010
/// </summary>
11-
public const string Name = "Table";
11+
public const string Name = "TableStorage";
1212

1313
/// <summary>
1414
/// Gets or sets the table name.

0 commit comments

Comments
 (0)