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 24, 2022
1 parent 5876ef6 commit 92ea1de
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
package hexagonal.api.member.adapter.in.web.request;

import lombok.Getter;

@Getter
public class RegisterMemberReq {
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 RegisterMemberResponse {
Long id;
String email;

public RegisterMemberResponse(Long id, String email) {
this.id = id;
this.email = email;
}
}

0 comments on commit 92ea1de

Please sign in to comment.