tjc-sdk
Version:
TIANJI IM SDK
17 lines (14 loc) • 371 B
JavaScript
/*
* Copyright (c) 2020 TianjiChat. All rights reserved.
*/
import UserInfo from "./userInfo.js";
export default class NullUserInfo extends UserInfo {
constructor(userId) {
super();
this.uid = userId;
//this.name = '<' + userId + '>';
this.name = '用户';
this.displayName = this.name;
this.portrait = '';
}
}