Skip to content

Commit

Permalink
UMC-EWHA#31 Feat: Upload PostUserReq
Browse files Browse the repository at this point in the history
  • Loading branch information
JoongHyun-Kim committed Nov 23, 2022
1 parent 82be6af commit 149b5f1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/umc/crud/src/user/model/PostUserReq.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package umc.crud.src.user.model;

import lombok.*;

@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class PostUserReq {
private String email;
private String password;
private String nickname;
}

0 comments on commit 149b5f1

Please sign in to comment.