react-native-agora-chat
Version:
react native chat sdk
18 lines (16 loc) • 329 B
JavaScript
/**
* The Contact class is used to store the information of a contact.
*/
export class ChatContact {
/**
* The user id of the contact.
*/
/**
* The remark of the contact.
*/
constructor(params) {
this.userId = params.userId;
this.remark = params.remark;
}
}
//# sourceMappingURL=ChatContact.js.map