You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
Protocol Buffer
25 lines
404 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
option go_package = "/pbMq";
|
|
|
|
message MqDanmaku {
|
|
string platform = 1;
|
|
int64 liveRoomId = 2;
|
|
int64 uid = 3;
|
|
string uname = 4;
|
|
string content = 5;
|
|
int64 sendTime = 6;
|
|
}
|
|
|
|
message MqGift {
|
|
string platform = 1;
|
|
int64 liveRoomId = 2;
|
|
int64 uid = 3;
|
|
string uname = 4;
|
|
int32 giftId = 5;
|
|
string giftName = 6;
|
|
int64 totalCoin = 7;
|
|
int64 sendTime = 8;
|
|
} |