learnsteam-quiz-api/internal/models/auth.go

12 lines
218 B
Go
Raw Normal View History

2023-10-19 22:47:12 +09:00
package models
type LoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type RegisterRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}