18 lines
401 B
Go
18 lines
401 B
Go
package response
|
|
|
|
// 获取当轮魅力值和座位上的男女top1
|
|
type GetChatroomCurrentRoundCharmResponse struct {
|
|
ManTopOneUserId string // 男性top one
|
|
WomanTopOneUserId string // 女性top one
|
|
CurrentRoundCharmList []RoundUserCharm
|
|
}
|
|
|
|
// 魅力值用户
|
|
type RoundUserCharm struct {
|
|
UserId string
|
|
Avatar string
|
|
NickName string
|
|
CharmValue string
|
|
Gender string
|
|
}
|