react-native-agora-chat
Version:
react native chat sdk
25 lines (22 loc) • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ChatContact = void 0;
/**
* The Contact class is used to store the information of a contact.
*/
class ChatContact {
/**
* The user id of the contact.
*/
/**
* The remark of the contact.
*/
constructor(params) {
this.userId = params.userId;
this.remark = params.remark;
}
}
exports.ChatContact = ChatContact;
//# sourceMappingURL=ChatContact.js.map