1
0
mirror of synced 2025-01-19 06:27:25 +01:00
2023-02-11 01:24:24 +08:00

22 lines
426 B
C#

using SharedProject.models;
namespace MatchServer.Storage;
public class MatchingDb
{
public Dictionary<long, List<OnlineMatchingData>> MatchingDictionary;
public object DbLock = new();
static MatchingDb()
{
}
private MatchingDb()
{
MatchingDictionary = new Dictionary<long, List<OnlineMatchingData>>();
}
public static MatchingDb GetInstance { get; } = new MatchingDb();
}