Files
servicebase/pkg/common/netease/dto/ImChatroomOnlineMember.go
2025-11-18 17:48:20 +08:00

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