UNPKG
ngx-admin-lte
Version:
latest (3.0.0-beta.1)
3.0.0-beta.1
2.0.0-beta.11
2.0.0-beta.10
2.0.0-beta.9
2.0.0-beta.8
2.0.0-beta.7
2.0.0-beta.6
1.1.0
1.0.1
1.0.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
AdminLTE theme for angular
ngx-admin-lte
/
src
/
models
/
notification.ts
12 lines
(10 loc)
•
254 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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 ||
''
; } }