15 lines
264 B
Go
15 lines
264 B
Go
package request
|
|
|
|
type LoginPayload struct {
|
|
Email string `json:"email"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type RefreshPayload struct {
|
|
RefreshToken string `json:"refresh_token"`
|
|
}
|
|
|
|
type LogoutPayload struct {
|
|
RefreshToken string `json:"refresh_token"`
|
|
}
|