15 lines
296 B
Go
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
|
|
}
|