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