14 lines
202 B
Protocol Buffer
14 lines
202 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
|
|
message FriendBubbleInfo{
|
|
int32 Id = 1;
|
|
int32 Type = 2;
|
|
repeated ItemInfo Items = 3;
|
|
}
|