Skip to content

Commit

Permalink
[FEAT/#120] 선배 카드 조회 응답값 이미지 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seokbeom00 committed Jul 19, 2024
1 parent 6d02b91 commit 6c12966
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,26 @@ public record SeniorCardProfileResponse(
String field,
String position,
String detailPosition,
String level
String level,
String image
) {
public static SeniorCardProfileResponse of(
final String nickname,
final String company,
final String field,
final String position,
final String detailPosition,
final String level
final String level,
final String image
) {
return new SeniorCardProfileResponse(
nickname,
company,
field,
position,
detailPosition,
level
level,
image
);
}
}

0 comments on commit 6c12966

Please sign in to comment.