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