Renamed in user-profile.ts

pull/73/head
MillenniumEarl 2021-03-03 10:59:05 +01:00
parent b2ce7a61b4
commit 28b01781b9
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
"use strict";
// Modules from files
import Post from "./post";
/**
* Class containing the data of the user currently connected to the F95Zone platform.
*/
export default class UserData {
/**
* User name.
*/
username: string = null;
/**
* Path to the user's profile picture.
*/
avatar: string = null;
/**
* List of followed thread URLs.
*/
watched: string[] = [];
/**
* List of bookmarked posts.
*/
bookmarks: Post[] = [];
/**
* List of alerts.
* @todo
*/
alerts: string[] = [];
/**
* List of conversations.
* @todo
*/
conversations: string[];
}