Skip to content

Commit e0c3cfa

Browse files
committed
refactor: Modify LoginDto (#3)
1 parent 3b4c961 commit e0c3cfa

File tree

1 file changed

+12
-0
lines changed
  • server-toy-project/src/main/java/com/gdsc_teamb/servertoyproject/login

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.gdsc_teamb.servertoyproject.login;
2+
3+
import lombok.*;
4+
5+
@Getter
6+
@Setter
7+
@ToString
8+
@Builder
9+
public class LoginDto {
10+
private String memberId;
11+
private String password;
12+
}

0 commit comments

Comments
 (0)