fix(event) perbaikan extend event

pull/2/head
ashar 2024-06-06 14:03:43 +07:00
parent 7bd79bffd2
commit 4fc428e3b7
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { IEvent } from '@nestjs/cqrs';
import { IEvent } from 'src/core/strings/constants/interface.constants';
export class UserPrivilegeCreatedEvent {
constructor(public readonly data: IEvent) {}

View File

@ -1,4 +1,4 @@
import { IEvent } from '@nestjs/cqrs';
import { IEvent } from 'src/core/strings/constants/interface.constants';
export class UserPrivilegeDeletedEvent {
constructor(public readonly data: IEvent) {}

View File

@ -1,4 +1,4 @@
import { IEvent } from '@nestjs/cqrs';
import { IEvent } from 'src/core/strings/constants/interface.constants';
export class UserPrivilegeUpdatedEvent {
constructor(public readonly data: IEvent) {}