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

8 lines
177 B
TypeScript

export class InviteLinkCreatedEvent {
constructor(
public readonly teamId: number,
public readonly actorUserId: number,
public readonly teamName: string,
) {}
}