Files
hk4e/service/annie-user/entity/api/user_entity.go
2022-11-20 15:38:00 +08:00

9 lines
168 B
Go

package api
type User struct {
Uid uint64 `json:"uid"`
Username string `json:"username"`
Password string `json:"password"`
IsAdmin bool `json:"isAdmin"`
}