mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-09 00:22:26 +08:00
12 lines
209 B
Go
12 lines
209 B
Go
package gm
|
|
|
|
type OnlineUserList struct {
|
|
UserList []*OnlineUserInfo `json:"userList"`
|
|
}
|
|
|
|
type OnlineUserInfo struct {
|
|
Uid uint32 `json:"uid"`
|
|
ConvId uint64 `json:"convId"`
|
|
Addr string `json:"addr"`
|
|
}
|