LinkUp-P2P-Chat/chatBot/includes/chatroom.js
2024-06-10 17:34:21 +03:00

10 lines
144 B
JavaScript

class ChatRoom {
public ChatRoom(topic, peers) {
this.topic = topic;
this.peers = peers;
}
}
export default ChatRoom;