Files
teamwallet/myteamwallet_backend/src/notifications/events/player-created.event.ts

9 lines
213 B
TypeScript

export class PlayerCreatedEvent {
constructor(
public readonly teamId: number,
public readonly actorUserId: number,
public readonly playerId: number,
public readonly playerName: string,
) {}
}