13 lines
300 B
Go
13 lines
300 B
Go
package response
|
|
|
|
import (
|
|
"gitea.ddegame.cn/open/servicebase/pkg/dto"
|
|
)
|
|
|
|
type GetUserChatroomResponse struct {
|
|
UserCreatedRoom *dto.ListChatroomDTO `json:"UserCreatedRoom,omitempty"` // 用户创建的
|
|
|
|
UserInRoom *dto.ListChatroomDTO `json:"UserInRoom,omitempty"` // 用户所在的聊天室
|
|
|
|
}
|