added: login dto

This commit is contained in:
nquidox 2025-07-07 17:48:45 +03:00
parent 2028671a54
commit a176522bbb

View file

@ -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"`
}