src/app/chats/chats.model.ts
Properties |
constructor(model: any)
|
||||||
|
Defined in src/app/chats/chats.model.ts:4
|
||||||
|
Parameters :
|
| messages |
Type : any[]
|
|
Defined in src/app/chats/chats.model.ts:4
|
| name |
Type : string
|
|
Defined in src/app/chats/chats.model.ts:3
|
| picture |
Type : string
|
|
Defined in src/app/chats/chats.model.ts:2
|
export class Chat {
picture: string;
name: string;
messages: any[];
constructor(model: any = null) {
this.picture = model.picture;
this.name = model.name;
this.messages = model.messages;
}
}