9 lines
354 B
C#
9 lines
354 B
C#
namespace mws.backend.dotnet.application.Documents;
|
|
|
|
public interface IDocumentContentStore
|
|
{
|
|
Task<string> UploadAsync(string projectName, string fileName, string contentType, Stream body, CancellationToken ct);
|
|
Task<Stream> DownloadAsync(string storageKey, CancellationToken ct);
|
|
Task DeleteAsync(string storageKey, CancellationToken ct);
|
|
}
|