api-entities/identity/dto/auth.go
2024-12-06 16:44:42 +01:00

11 lines
195 B
Go

package identity
type AuthLoginRequestDTO struct {
Username string `json:"username"`
Password string `json:"password"`
}
type AuthLoginResponseDTO struct {
Token string `json:"jwt_token"`
}