42_ft_transcendence/django/frontend/static/js/api/chat/Message.js
2024-05-14 08:50:37 +02:00

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};