20 lines
304 B
JavaScript
20 lines
304 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(){
|
|
|
|
}
|
|
|
|
} |