-
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.
- Loading branch information
1 parent
f8399b8
commit c16f835
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
src/main/java/server/sopt/server/service/dto/request/GetInstaIdValidDto.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,9 @@ | ||
package server.sopt.server.service.dto.request; | ||
|
||
import lombok.Getter; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
|
||
public record GetInstaIdValidDto( | ||
String instaId | ||
) { | ||
} |
4 changes: 2 additions & 2 deletions
4
src/main/java/server/sopt/server/service/dto/response/GetAccountCheckDto.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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package server.sopt.server.service.dto.response; | ||
|
||
public record GetAccountCheckDto( | ||
boolean success | ||
boolean success | ||
) { | ||
public static GetAccountCheckDto of(Boolean success){ | ||
public static GetAccountCheckDto of(Boolean success) { | ||
return new GetAccountCheckDto(success); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/server/sopt/server/service/dto/response/GetInstaIdCheckDto.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,9 @@ | ||
package server.sopt.server.service.dto.response; | ||
|
||
public record GetInstaIdCheckDto( | ||
boolean success | ||
) { | ||
public static GetInstaIdCheckDto of(Boolean success){ | ||
return new GetInstaIdCheckDto(success); | ||
} | ||
} |