import { INotificationTarget } from './notification-target'; export interface INotification { creationDate: string; id: string; issuerId?: string; notificationDetails?: string; notificationType: string; readDate?: string; seenDate?: string; softDeleted?: string; target: INotificationTarget; userId: string; }