11 lines
189 B
Go
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"`
|
|
}
|