namespace LiteCharms.Features.S3.Abstractions; public interface IS3Service { Task> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default); Task DeleteFileAsync(string fileKey, CancellationToken cancellationToken = default); }