14 lines
304 B
Protocol Buffer
14 lines
304 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "RadarChatRoomMember.proto";
|
||
|
|
||
|
message RadarRelationChainResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
optional string _Ticket = 2;
|
||
|
required uint32 _MemberCount = 3;
|
||
|
repeated RadarChatRoomMember _MemberList = 4;
|
||
|
}
|