Files
2018-04-25 13:16:36 +02:00

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"`
}