Added Register DTO

This commit is contained in:
2025-10-20 16:33:49 +02:00
parent 990cc6f9af
commit f675a12790

View File

@@ -8,3 +8,13 @@ type AuthLoginRequestDTO struct {
type AuthLoginResponseDTO struct {
Token string `json:"jwt_token"`
}
type AuthRegisterRequestDTO struct {
Email string `json:"email"`
Username string `json:"username"`
Password string `json:"password"`
}
type AuthRegisterResponseDTO struct {
ID string `json:"id"`
}