Files
vigilcare-records/VigilCareRecordsAPI/Services/Interfaces/IDocumentStorageService.cs
T
2026-06-26 04:20:20 +08:00

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);
}