Skip to content

Commit

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

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
@AllArgsConstructor
public class User {
private int userIdx;
private String email;
private String password;
private String nickname;
}

0 comments on commit 2582946

Please sign in to comment.