apps/nestjs-backend/src/event-emitter/events/space/collaborator.event.ts
import { Events } from '../event.enum';
export class CollaboratorCreateEvent {
public readonly name = Events.COLLABORATOR_CREATE;
constructor(public readonly spaceId: string) {}
}
export class CollaboratorDeleteEvent {
public readonly name = Events.COLLABORATOR_DELETE;
constructor(public readonly spaceId: string) {}
}