Files
caliverse_server/UGQApiServer/Settings/DynamoDbSettings.cs
2025-05-01 07:20:41 +09:00

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