15 lines
351 B
TypeScript
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;
|
|
}
|