Files
EMI-Backend/def/user.js
Adolfo Reyna 6904ad913e new posts
2021-07-23 22:04:33 -07:00

20 lines
306 B
JavaScript

class User {
constructor(json){
this.username = 'aeroreyna';
this.following = [];
this.lastUpdate = new Date();ß
this.newsFeedCache = [];
this.isGroup = false;
}
newPost(content){
}
newComment(post){
}
newReaction(){
}
}