Minor changes to IStore. Added another IStore interface for double keys. Added ChatterStore for chat's voices. Updated respective requests.
This commit is contained in:
@@ -42,9 +42,9 @@ namespace HermesSocketServer.Store
|
||||
return null;
|
||||
}
|
||||
|
||||
public IEnumerable<string> Get()
|
||||
public IDictionary<string, string> Get()
|
||||
{
|
||||
return _voices.Values.ToImmutableList();
|
||||
return _voices.ToImmutableDictionary();
|
||||
}
|
||||
|
||||
public async Task Load()
|
||||
|
||||
Reference in New Issue
Block a user