11 lines
280 B
Go
11 lines
280 B
Go
package yunxin
|
|
|
|
// 聊天室在线成员对象
|
|
type ImChatroomOnlineMember struct {
|
|
MessageRoomId int `json:"roomid"`
|
|
UserId string `json:"accid"`
|
|
EnterTime int64 `json:"enterTime"`
|
|
Type string `json:"type"`
|
|
OnlineStat bool `json:"onlineStat"`
|
|
}
|