7 lines
235 B
C#
7 lines
235 B
C#
namespace Cocotte.Modules.Raids;
|
|
|
|
public class RaidRegisterManager
|
|
{
|
|
public IDictionary<(ulong raidId, ulong playerId), RosterPlayer> RegisteringPlayers =
|
|
new Dictionary<(ulong raidId, ulong playerId), RosterPlayer>();
|
|
} |