Files
ezbookkeeping/pkg/models/auth_response.go
T
2020-11-08 00:40:45 +08:00

8 lines
163 B
Go

package models
type AuthResponse struct {
Token string `json:"token"`
Need2FA bool `json:"need2FA"`
User *UserBasicInfo `json:"user"`
}