Skip to content

Commit

Permalink
#258 | Revise UsersResponse for Users Detail Endpoint (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
emreylmaz authored Dec 1, 2023
1 parent 92c6694 commit 8044ba6
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.ays.user.model.dto.response;

import com.ays.institution.model.dto.response.InstitutionResponse;
import com.ays.user.model.enums.UserRole;
import com.ays.user.model.enums.UserStatus;
import com.ays.user.model.enums.UserSupportStatus;
import lombok.Getter;
import lombok.Setter;

Expand All @@ -14,12 +14,10 @@
public class UsersResponse {

private String id;
private String username;
private String firstName;
private String lastName;
private UserRole role;
private UserStatus status;

private InstitutionResponse institution;
private UserSupportStatus supportStatus;

}

0 comments on commit 8044ba6

Please sign in to comment.