2020-10-02 12:01:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-09-29 21:38:08 +00:00
|
|
|
/**
|
|
|
|
* Class containing the data of the user currently connected to the F95Zone platform.
|
|
|
|
*/
|
2020-09-29 15:11:43 +00:00
|
|
|
class UserData {
|
2020-09-29 21:38:08 +00:00
|
|
|
constructor() {
|
|
|
|
/**
|
|
|
|
* User username.
|
|
|
|
* @type String
|
|
|
|
*/
|
|
|
|
this.username = "";
|
|
|
|
/**
|
|
|
|
* Path to the user 's profile picture.
|
|
|
|
* @type URL
|
|
|
|
*/
|
|
|
|
this.avatarSrc = null;
|
|
|
|
/**
|
|
|
|
* List of followed thread URLs.
|
|
|
|
* @type URL[]
|
|
|
|
*/
|
|
|
|
this.watchedThreads = [];
|
|
|
|
}
|
2020-09-29 15:11:43 +00:00
|
|
|
}
|
2020-09-29 21:38:08 +00:00
|
|
|
|
2020-10-02 12:01:51 +00:00
|
|
|
module.exports = UserData;
|