Added VoiceStore properly.

This commit is contained in:
Tom
2024-10-17 21:17:09 +00:00
parent 0a2392b957
commit be87080c49
4 changed files with 63 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ namespace HermesSocketServer.Store
IEnumerable<V> Get();
Task Load();
void Remove(K? key);
Task Save();
Task<bool> Save();
bool Set(K? key, V? value);
}
}