mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
10 lines
304 B
Go
10 lines
304 B
Go
package models
|
|
|
|
// AuthResponse returns a view-object of user authorization
|
|
type AuthResponse struct {
|
|
Token string `json:"token"`
|
|
Need2FA bool `json:"need2FA"`
|
|
NeedVerifyEmail bool `json:"needVerifyEmail"`
|
|
User *UserBasicInfo `json:"user"`
|
|
}
|