
// Core imports
import { Component } from '@angular/core'
import { MatDialogRef } from '@angular/material'


@Component({
    moduleId: module.id+ '',
    selector: 'cannot-add-dialog',
    templateUrl: './template/t--cannot-add-dialog.pug',
    styleUrls: ['sty.cannot-add-dialog.scss']
})

export class CannotAddDialogComponent {

    constructor(
        private _dialogRef:MatDialogRef<CannotAddDialogComponent>
    ) { }

    close() {
        this._dialogRef.close()
    }
}
