Files
zod-backend/src/common/redis/interface/event.interface.ts
2025-03-27 12:33:56 +03:00

6 lines
144 B
TypeScript

import { Notification } from '~/common/modules/notification/entities';
export interface IEventInterface extends Notification {
data?: any;
}