mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
16 lines
378 B
C#
16 lines
378 B
C#
namespace Plonds.Core.Publishing;
|
|
|
|
public sealed record PlondsS3ClientOptions(
|
|
Uri Endpoint,
|
|
string Region,
|
|
string Bucket,
|
|
string AccessKey,
|
|
string SecretKey,
|
|
string PublicBaseUrl,
|
|
string PublicBaseKeyPrefix = "")
|
|
{
|
|
public TimeSpan RequestTimeout { get; init; } = TimeSpan.FromMinutes(30);
|
|
|
|
public int MaxUploadAttempts { get; init; } = 3;
|
|
}
|