nitial commit

This commit is contained in:
2026-05-15 10:36:20 +09:00
commit 2b16d1a3e1
18 changed files with 705 additions and 0 deletions
@@ -0,0 +1,10 @@
package company.specialsource.dto;
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class LoginRequest {
private String username;
private String password;
}