Files
hk4e/gate/entity/gm/online_user_info.go
huangxiaolei 43403202b5 优化架构
2022-11-23 18:05:11 +08:00

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"`
}