12 lines
237 B
Go
12 lines
237 B
Go
|
package models
|
||
|
|
||
|
type AuthRequestBody struct {
|
||
|
UserID string `json:"userId"`
|
||
|
Signature string `json:"signature"`
|
||
|
}
|
||
|
|
||
|
type RefreshResponse struct {
|
||
|
AccessToken string `json:"accessToken"`
|
||
|
RefreshToken string `json:"refreshToken"`
|
||
|
}
|