Skip to content

Commit

Permalink
[feat] #14- Insta확인 Dto 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarlgnszx committed May 18, 2024
1 parent f8399b8 commit c16f835
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
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
) {
}
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);
}
}
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);
}
}

0 comments on commit c16f835

Please sign in to comment.