14 lines
327 B
Protocol Buffer
14 lines
327 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message GetChatRoomInfoDetailResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional string _Announcement = 2;
|
|
optional uint32 _ChatRoomInfoVersion = 3;
|
|
optional string _AnnouncementEditor = 4;
|
|
optional uint32 _AnnouncementPublishTime = 5;
|
|
}
|