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

15 lines
296 B
Go

package response
import "gitea.ddegame.cn/open/servicebase/pkg/dto"
type SearchResponse struct {
UserInfo dto.UserInfoDTO
ChatroomInfo dto.ListChatroomDTO
}
type SearchV2Response struct {
UserList []dto.UserInfoDTO
ChatroomList []dto.ListChatroomDTO
GuildList []dto.GuildDTO
}