10 lines
246 B
Go
10 lines
246 B
Go
package viewmodel
|
|
|
|
// AuthResponse has data from authentication routes
|
|
type AuthResponse struct {
|
|
Token string `json:"token"`
|
|
ValidTime int64 `json:"valid_time"`
|
|
ServerTime int64 `json:"server_time"`
|
|
User User `json:"user"`
|
|
}
|