Skip to content

Commit

Permalink
refactor TableSettings to TableStorageSettings
Browse files Browse the repository at this point in the history
Related to: aliencube#319
  • Loading branch information
sikutisa committed Sep 14, 2024
1 parent 55caf06 commit 29b9486
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class StorageAccountSettings
public const string Name = "StorageAccount";

/// <summary>
/// Gets or sets the <see cref="TableSettings"/> instance.
/// Gets or sets the <see cref="TableStorageSettings"/> instance.
/// </summary>
public TableSettings Table { get; set; } = new();
public TableStorageSettings Table { get; set; } = new();
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ namespace AzureOpenAIProxy.ApiApp.Configurations;
/// <summary>
/// This represents the settings entity for Azure Table Stroage.
/// </summary>
public class TableSettings
public class TableStorageSettings
{
/// <summary>
/// Gets the name of the configuration settings.
/// </summary>
public const string Name = "Table";
public const string Name = "TableStorage";

/// <summary>
/// Gets or sets the table name.
Expand Down

0 comments on commit 29b9486

Please sign in to comment.