5 lines
226 B
C#
5 lines
226 B
C#
public interface IDocumentStorageService
|
|
{
|
|
Task<(string objectKey, string sha256, long fileSize)> UploadAsync(Stream fileStream, string contentType, Guid batchId);
|
|
Task<string> GetPresignedUrlAsync(string objectKey);
|
|
} |