feat: add notification domain events, listener, and module

This commit is contained in:
Bastian Wagner
2026-08-04 18:53:48 +02:00
parent 05f4c2ddf0
commit 451b5c4e42
11 changed files with 256 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
export class PlayerCreatedEvent {
constructor(
public readonly teamId: number,
public readonly actorUserId: number,
public readonly playerId: number,
public readonly playerName: string,
) {}
}