Files
dttmr-api/internal/api/request/auth.go
T

11 lines
189 B
Go

package request
type LoginPayload struct {
Email string `json:"email"`
Password string `json:"password"`
}
type RefreshPayload struct {
RefreshToken string `json:"refresh_token"`
}