You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
384 B
18 lines
384 B
syntax="proto3"; |
|
|
|
option java_multiple_files = false; |
|
option java_outer_classname = "UserGroup"; |
|
|
|
package net.sopod.soim.data.msg.user; |
|
|
|
import "proto/user/UserMsg.proto"; |
|
|
|
// 请求在线用户列表 |
|
message ReqOnlineUserList { |
|
string keyword = 2; // 搜索关键字 |
|
} |
|
|
|
// 响应在线用户列表 |
|
message ResOnlineUserList { |
|
repeated UserInfo users = 2; // 查询用户列表 |
|
}
|
|
|