diff --git a/internal/api/user/dto.go b/internal/api/user/dto.go index 1f71ef1..662c476 100644 --- a/internal/api/user/dto.go +++ b/internal/api/user/dto.go @@ -16,3 +16,8 @@ type Update struct { Username string `json:"username"` Email string `json:"email"` } + +type Login struct { + Email string `json:"email"` + Password string `json:"password"` +}