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.

16 lines
306 B

  1. package org.ros.chatto.dto;
  2. import java.time.Instant;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Builder;
  5. import lombok.Getter;
  6. @Getter
  7. @Builder
  8. @AllArgsConstructor
  9. public class AdminUserDTO {
  10. private int id;
  11. private String userName;
  12. private String role;
  13. private Instant joinDate;
  14. }