A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
267 B

4 years ago
  1. export class ActiveUserViewModel {
  2. userName: string | undefined;
  3. online: boolean = false;
  4. unlocked: boolean = false;
  5. passphrase: string = "";
  6. lastActive: Date | undefined;
  7. lastMessageTime: Date | undefined;
  8. lastMessageText: string = "";
  9. }