about summary refs log tree commit diff
path: root/LibMatrix/Services/TieredStorageService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/Services/TieredStorageService.cs')
-rw-r--r--LibMatrix/Services/TieredStorageService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibMatrix/Services/TieredStorageService.cs b/LibMatrix/Services/TieredStorageService.cs
index 954a2ce..f242785 100644
--- a/LibMatrix/Services/TieredStorageService.cs
+++ b/LibMatrix/Services/TieredStorageService.cs
@@ -3,10 +3,10 @@ using LibMatrix.Interfaces.Services;
 namespace LibMatrix.Services;
 
 public class TieredStorageService {
-    public IStorageProvider CacheStorageProvider { get; }
-    public IStorageProvider DataStorageProvider { get; }
+    public IStorageProvider? CacheStorageProvider { get; }
+    public IStorageProvider? DataStorageProvider { get; }
 
-    public TieredStorageService(IStorageProvider cacheStorageProvider, IStorageProvider dataStorageProvider) {
+    public TieredStorageService(IStorageProvider? cacheStorageProvider, IStorageProvider? dataStorageProvider) {
         CacheStorageProvider = cacheStorageProvider;
         DataStorageProvider = dataStorageProvider;
     }