mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:07:22 +01:00
7 lines
282 B
C#
7 lines
282 B
C#
namespace MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
public class TransientConfig : IMareConfiguration
|
|
{
|
|
public Dictionary<string, HashSet<string>> PlayerPersistentTransientCache { get; set; } = new(StringComparer.Ordinal);
|
|
public int Version { get; set; } = 0;
|
|
}
|