ft_transcendence/frontend/static/js/api/chat/channel.js

10 lines
147 B
JavaScript
Raw Normal View History

2023-12-12 04:04:46 -05:00
class Channel {
constructor(id, members, messages) {
this.id = id;
this.members = members;
this.messages = messages;
}
}
export {Channel}