Files
mws.backend.dotnet/infrastructure/CloudFile/CloudFileOptions.cs
T

10 lines
312 B
C#
Raw Normal View History

2026-09-06 12:33:38 +07:00
namespace mws.backend.dotnet.infrastructure.CloudFile;
public class CloudFileOptions
{
public string BaseUrl { get; set; } = string.Empty;
public string ApiKey { get; set; } = string.Empty;
public string BucketPrefix { get; set; } = "mws-p-";
public int HttpTimeoutSeconds { get; set; } = 30;
}