src/models/notification.ts
Properties |
constructor(data: any)
|
||||||||
Defined in src/models/notification.ts:4
|
||||||||
Parameters :
|
Public class |
class:
|
Type : string
|
Defined in src/models/notification.ts:3
|
Public content |
content:
|
Type : string
|
Defined in src/models/notification.ts:2
|
Public link |
link:
|
Type : string
|
Defined in src/models/notification.ts:4
|
export class Notification {
public content: string;
public class: string;
public link: string;
public constructor(data: any = {}) {
this.content = data.content || '';
this.class = data.class || '';
this.link = data.link || '';
}
}