Skip to content

Commit

Permalink
๐Ÿ‘” ํšŒ์›์ •๋ณด ๋ณ€๊ฒฝ ์š”์ฒญ Req/Res ์ถ”๊ฐ€(#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jun108059 committed Jun 29, 2022
1 parent f75aa58 commit 8823eec
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package hexagonal.api.member.adapter.in.web.request;

import lombok.Getter;

@Getter
public class UpdateMemberReq {

Long id;
String name;
String email;
String type;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package hexagonal.api.member.adapter.in.web.response;

import lombok.Data;

@Data
public class UpdateMemberResponse {
Long id;
String name;

public UpdateMemberResponse(Long id, String name) {
this.id = id;
this.name = name;
}
}

0 comments on commit 8823eec

Please sign in to comment.