Files
2026-07-21 13:59:38 +07:00

10 lines
298 B
C#

namespace Indotalent.Infrastructure.File.Aws;
public class AwsS3SettingsModel
{
public bool IsUsed { get; set; }
public string AccessKey { get; set; } = string.Empty;
public string SecretKey { get; set; } = string.Empty;
public string BucketName { get; set; } = string.Empty;
}