From 28b01781b92c08506ad7aa4b83b8a435ccdef9b0 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Wed, 3 Mar 2021 10:59:05 +0100 Subject: [PATCH] Renamed in user-profile.ts --- src/scripts/classes/user-data.ts | 36 -------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/scripts/classes/user-data.ts diff --git a/src/scripts/classes/user-data.ts b/src/scripts/classes/user-data.ts deleted file mode 100644 index 94af343..0000000 --- a/src/scripts/classes/user-data.ts +++ /dev/null @@ -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[]; -}