Renamed fields

pull/73/head
MillenniumEarl 2021-02-21 14:53:32 +01:00
parent 6c0b81cf8a
commit 4bbad3d462
1 changed files with 4 additions and 4 deletions

View File

@ -21,11 +21,11 @@ export default class UserData {
*/ */
bookmarks: string[] = []; bookmarks: string[] = [];
/** /**
* List of notification messages for the user. * List of alerts.
*/ */
notifications: string[] = []; alerts: string[] = [];
/** /**
* List of messages received. * List of conversations.
*/ */
messages: string[]; conversations: string[];
} }