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.
|
syntax = "proto3"; |
|
|
|
option java_multiple_files = true; |
|
|
|
package net.sopod.soim.logic.common.message; |
|
|
|
message UserSearchReq { |
|
string keyword = 1; |
|
} |
|
|
|
message UserSearchReply { |
|
repeated UserInfo users = 1; |
|
} |
|
|
|
message UserInfo { |
|
int64 uid = 1; |
|
string account = 2; |
|
string nickname = 3; |
|
}
|
|
|