UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

13 lines (12 loc) 304 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class InAppNotification extends BaseEntity { userId: number; user: User; event: string; title: string; message: string; redirectUrl: string; isRead: boolean; metaData: any; }