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

18 lines
593 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { Component, Inject } from '@angular/core';
2023-10-06 10:10:53 +02:00
import { MAT_DIALOG_DATA, MatDialogRef } 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',
styleUrls: ['popup-notification.component.scss']
2019-01-18 18:03:45 +01:00
})
export class PopupNotificationDialogComponent {
constructor(
public dialogRef: MatDialogRef<PopupNotificationDialogComponent>,
@Inject(MAT_DIALOG_DATA) public notification: PopupNotification
) {
}
}