import { Component, Inject } from '@angular/core'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; 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, @Inject(MAT_DIALOG_DATA) public notification: PopupNotification ) { } }