18 lines
366 B
C#
18 lines
366 B
C#
using OpenHarbor.Storage.Abstractions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenHarbor.Storage.S3
|
|
{
|
|
public interface IS3FileWriteOptions
|
|
{
|
|
public string Acl { get; }
|
|
}
|
|
|
|
public class S3FileWriteOptions : DefaultWriteOptions, IS3FileWriteOptions
|
|
{
|
|
public string Acl { get; set; }
|
|
}
|
|
}
|