14 lines
269 B
JavaScript
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(){}
|
|
|
|
} |