LinkUp-P2P-Chat/chatBot/includes/UserPeer.js

10 lines
224 B
JavaScript
Raw Normal View History

class UserPeer {
public UserPeer(peer, topics, username, avatar) {
this.peer = peer;
this.topics = topics;
this.username = username;
this.avatar = avatar;
}
}
export default UserPeer;