Files
ezbookkeeping/pkg/models/auth_response.go
T
2020-10-28 00:32:37 +08:00

9 lines
201 B
Go

package models
type AuthResponse struct {
Token string `json:"token"`
Username string `json:"username,omitempty"`
Nickname string `json:"nickname,omitempty"`
Need2FA bool `json:"need2FA"`
}