about summary refs log tree commit diff
path: root/LibMatrix/Services/TieredStorageService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--LibMatrix/Services/TieredStorageService.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/LibMatrix/Services/TieredStorageService.cs b/LibMatrix/Services/TieredStorageService.cs
new file mode 100644

index 0000000..954a2ce --- /dev/null +++ b/LibMatrix/Services/TieredStorageService.cs
@@ -0,0 +1,13 @@ +using LibMatrix.Interfaces.Services; + +namespace LibMatrix.Services; + +public class TieredStorageService { + public IStorageProvider CacheStorageProvider { get; } + public IStorageProvider DataStorageProvider { get; } + + public TieredStorageService(IStorageProvider cacheStorageProvider, IStorageProvider dataStorageProvider) { + CacheStorageProvider = cacheStorageProvider; + DataStorageProvider = dataStorageProvider; + } +}