11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
class Message {
|
|
constructor(channel, author, content, time) {
|
|
this.channel = channel;
|
|
this.author = author;
|
|
this.content = content;
|
|
this.time = time;
|
|
}
|
|
}
|
|
|
|
export {Message};
|