File tree 3 files changed +35
-1
lines changed
src/AzureOpenAIProxy.ApiApp
3 files changed +35
-1
lines changed 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 Storage.
5
+ /// </summary>
6
+ public class StorageSettings
7
+ {
8
+ /// <summary>
9
+ /// Gets the name of the configuration settings.
10
+ /// </summary>
11
+ public const string Name = "Storage" ;
12
+
13
+ /// <summary>
14
+ /// Gets or sets the <see cref="TableSettings"/> instance.
15
+ /// </summary>
16
+ public TableSettings Table { get ; set ; } = new ( ) ;
17
+ }
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 Azure Table Stroage.
5
+ /// </summary>
6
+ public class TableSettings
7
+ {
8
+ /// <summary>
9
+ /// Gets the name of the configuration settings.
10
+ /// </summary>
11
+ public const string Name = "Table" ;
12
+
13
+ /// <summary>
14
+ /// Gets or sets the table name.
15
+ /// </summary>
16
+ public string ? TableName { get ; set ; }
17
+ }
Original file line number Diff line number Diff line change 32
32
},
33
33
"Stroage" : {
34
34
"Table" : {
35
- "Name " : " events"
35
+ "TableName " : " events"
36
36
}
37
37
}
38
38
},
You can’t perform that action at this time.
0 commit comments