11 lines
320 B
C#
11 lines
320 B
C#
namespace UGQApiServer.Settings;
|
|
|
|
public class DynamoDbSettings
|
|
{
|
|
public string Url { get; set; } = null!;
|
|
public string TablePostfix { get; set; } = null!;
|
|
public string AccessKey { get; set; } = null!;
|
|
public string SecretKey { get; set; } = null!;
|
|
public string Region { get; set; } = null!;
|
|
}
|