Files
mws.backend.dotnet/application/Documents/IDocumentContentStore.cs
T

9 lines
354 B
C#
Raw Normal View History

2026-09-06 12:33:38 +07:00
namespace mws.backend.dotnet.application.Documents;
public interface IDocumentContentStore
{
2026-09-22 23:17:35 +07:00
Task<string> UploadAsync(string projectName, string fileName, string contentType, Stream body, CancellationToken ct);
2026-09-15 22:23:54 +07:00
Task<Stream> DownloadAsync(string storageKey, CancellationToken ct);
Task DeleteAsync(string storageKey, CancellationToken ct);
2026-09-06 12:33:38 +07:00
}