src/app/core/notifications/notification.model.ts
Properties |
constructor(id: number, type: string, message: string, title?: string)
|
| Public id |
id:
|
Type : number
|
| Public message |
message:
|
Type : string
|
| Public title |
title:
|
Type : string
|
| Public type |
type:
|
Type : string
|
export class Notification {
constructor(public id: number,
public type: string,
public message: string,
public title?: string) {
}
}