import { CommonEntity } from '@servicelabsco/nestjs-utility-services'; import { InappNotificationAttributesDto } from '../dtos/inapp.notification.attributes.dto'; import { NotificationEntity } from './notification.entity'; export declare class InappNotificationEntity extends CommonEntity { notification_id: number; body: string; filter_condition: any; context: any; active: boolean; attributes: InappNotificationAttributesDto; notification: NotificationEntity; }