2021-10-29 12:58:18 +03:00

15 lines
351 B
TypeScript

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;
}