answer/internal/entity/auth_user_entity.go

10 lines
244 B
Go
Raw Normal View History

2022-09-27 17:59:05 +08:00
package entity
2022-10-21 12:00:50 +08:00
// UserCacheInfo User Cache Information
2022-09-27 17:59:05 +08:00
type UserCacheInfo struct {
UserID string `json:"user_id"`
UserStatus int `json:"user_status"`
EmailStatus int `json:"email_status"`
2022-11-14 18:07:28 +08:00
IsAdmin bool `json:"is_admin"`
2022-09-27 17:59:05 +08:00
}