2024-11-11 11:37:02 -05:00
|
|
|
|
using OpenHarbor.Storage.Abstractions;
|
2020-10-27 16:04:07 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2024-11-10 16:57:24 -05:00
|
|
|
|
namespace OpenHarbor.Storage.S3
|
2020-10-27 16:04:07 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IS3FileWriteOptions
|
|
|
|
|
{
|
|
|
|
|
public string Acl { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class S3FileWriteOptions : DefaultWriteOptions, IS3FileWriteOptions
|
|
|
|
|
{
|
|
|
|
|
public string Acl { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|