-
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.
Browse files
Browse the repository at this point in the history
…리-view-api Feat/#82/스페이스 전체 설정 스페이스 프로필 관리 view api
- Loading branch information
Showing
6 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
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
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
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
34 changes: 34 additions & 0 deletions
34
src/main/java/space/space_spring/dto/user/GetUserProfileListDto.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,34 @@ | ||
package space.space_spring.dto.user; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import org.checkerframework.checker.units.qual.A; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetUserProfileListDto { | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public static class Response { | ||
|
||
private List<UserProfile> userProfileList; | ||
} | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public static class UserProfile { | ||
|
||
private Long spaceId; | ||
|
||
private String spaceName; | ||
|
||
private String userName; | ||
|
||
private String userProfileImg; | ||
|
||
private String userAuth; | ||
} | ||
} |
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
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