Files
EMI-Backend/def/user.js
Adolfo Reyna dcd161aac8 adding cors
2021-07-20 09:55:19 -07:00

14 lines
269 B
JavaScript

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