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.

12 lines
194 B

  1. package org.ros.chatto.dto;
  2. import java.time.Instant;
  3. import lombok.Data;
  4. @Data
  5. public class ActiveUserDTO {
  6. private String userName;
  7. private Boolean online;
  8. private Instant lastActive;
  9. }