Files
CocosCreatorTutorial/PomeloClient/assets/Script/model/ChatInfoModel.js
2018-08-22 10:57:12 +08:00

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();