14 lines
231 B
Protocol Buffer
14 lines
231 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "FriendBubbleInfo.proto";
|
|
import "ResFriendLog.proto";
|
|
|
|
message NotifyFriendLog{
|
|
ResFriendLog info = 1;
|
|
FriendBubbleInfo Bubble = 2;
|
|
}
|