Files
servicebase/pkg/dto/response/GetChatroomCurrentRoundCharmResponse.go
2025-11-19 14:24:13 +08:00

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
}