9 lines
325 B
C#
9 lines
325 B
C#
namespace LiteCharms.Features.S3.Abstractions;
|
|
|
|
public abstract class S3ServiceBase(IAmazonS3 amazonS3)
|
|
{
|
|
protected readonly IAmazonS3 client = amazonS3;
|
|
|
|
public abstract Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
|
|
}
|