19 lines
473 B
Java
19 lines
473 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class SummaryPageResponseBean {
|
|
private String username;
|
|
private String email;
|
|
private String role;
|
|
private LocalDateTime lastLogin;
|
|
private LocalDateTime registrationDate;
|
|
private Long numberOfLoginAttempts;
|
|
private Long applicationsProcessed;
|
|
private List<UserActionResponseBean> userActions;
|
|
}
|