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!; }