mirror of
https://github.com/Leo501/CocosCreatorTutorial.git
synced 2026-05-08 14:48:40 +08:00
23 lines
356 B
JavaScript
23 lines
356 B
JavaScript
class ChatInfoModel {
|
|
constructor() {
|
|
this.chatInfo = {};
|
|
}
|
|
|
|
setName(name) {
|
|
this.chatInfo.name = name;
|
|
}
|
|
|
|
getName() {
|
|
return this.chatInfo.name;
|
|
}
|
|
|
|
setRoomId(rid) {
|
|
this.chatInfo.rid = rid;
|
|
}
|
|
|
|
getRoomId() {
|
|
return this.chatInfo.rid;
|
|
}
|
|
}
|
|
|
|
module.exports = new ChatInfoModel(); |