namespace StellaOps.ExportCenter.RiskBundles; public sealed record RiskBundleObjectStoreOptions(string StorageKey, string ContentType); public sealed record RiskBundleStorageMetadata(string StorageKey, long SizeBytes, string ContentType); public interface IRiskBundleObjectStore { Task StoreAsync( RiskBundleObjectStoreOptions options, Stream content, CancellationToken cancellationToken = default); }