7 lines
228 B
C#
7 lines
228 B
C#
namespace LiteCharms.Features.S3.Abstractions;
|
|
|
|
public interface IS3Service
|
|
{
|
|
Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
|
|
}
|