class Channel { constructor(id, members, messages) { this.id = id; this.members = members; this.messages = messages; } } export {Channel}