argos/dmp-frontend/src/app/library/notification/popup/popup-notification.componen...

17 lines
542 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { Component, Inject } from '@angular/core';
2019-09-23 10:17:03 +02:00
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
2019-01-18 18:03:45 +01:00
import { PopupNotification } from '../../../core/services/notification/ui-notification-service';
@Component({
selector: 'app-popup-notification-dialog',
templateUrl: './popup-notification.component.html'
})
export class PopupNotificationDialogComponent {
constructor(
public dialogRef: MatDialogRef<PopupNotificationDialogComponent>,
@Inject(MAT_DIALOG_DATA) public notification: PopupNotification
) {
}
}