Files
mws.backend.dotnet/application/Documents/IDocumentContentStore.cs
T
2026-09-15 22:23:54 +07:00

9 lines
350 B
C#

namespace mws.backend.dotnet.application.Documents;
public interface IDocumentContentStore
{
Task<string> UploadAsync(Guid projectId, string fileName, string contentType, Stream body, CancellationToken ct);
Task<Stream> DownloadAsync(string storageKey, CancellationToken ct);
Task DeleteAsync(string storageKey, CancellationToken ct);
}