forked from KakaoTech-BootCamp-Team-2/Kaboo-Auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/main/java/kaboo/kaboo_auth/domain/dto/response/MemberInfoResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package kaboo.kaboo_auth.domain.dto.response; | ||
|
||
import kaboo.kaboo_auth.domain.Course; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class MemberInfoResponse { | ||
private String koreaName; | ||
private String englishName; | ||
private int classNum; | ||
private Course course; | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/kaboo/kaboo_auth/domain/dto/response/MemberIntroduceResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package kaboo.kaboo_auth.domain.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class MemberIntroduceResponse { | ||
private String introduce; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/kaboo/kaboo_auth/domain/dto/response/MemberListResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package kaboo.kaboo_auth.domain.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class MemberListResponse { | ||
private int classNum; | ||
private int memberNum; | ||
private MemberInfoResponse[] memberList; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/kaboo/kaboo_auth/domain/dto/response/ResponseDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package kaboo.kaboo_auth.domain.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ResponseDTO<T> { | ||
private boolean success; | ||
private String message; | ||
private T data; | ||
} |