diff --git a/server/wheelserver/vo/user/go b/server/wheelserver/vo/user/go new file mode 100644 index 00000000..deeda397 --- /dev/null +++ b/server/wheelserver/vo/user/go @@ -0,0 +1,10 @@ +package vo + +type User struct { + AccountId string `json:"account_id"` + NickName string `json:"nickname"` + Avatar string `json:"avatar"` + Score string `json:"score"` + HourlyEarnings string `json:"hourly_earnings"` + Dice int32 `gorm:"json:dice"` +}