1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-08-08 19:11:49 +00:00
Files
MiraiGo/proto/msg/objmsg.proto
2021-11-12 10:43:12 +08:00

35 lines
612 B
Protocol Buffer

syntax = "proto3";
option go_package = "msg;msg";
message MsgPic {
bytes smallPicUrl = 1;
bytes originalPicUrl = 2;
int32 localPicId = 3;
}
message ObjMsg {
int32 msgType = 1;
bytes title = 2;
bytes bytesAbstact = 3;
bytes titleExt = 5;
repeated MsgPic msgPic = 6;
repeated MsgContentInfo msgContentInfo = 7;
int32 reportIdShow = 8;
}
message MsgContentInfo {
bytes contentInfoId = 1;
MsgFile msgFile = 2;
}
message MsgFile {
int32 busId = 1;
bytes filePath = 2;
int64 fileSize = 3;
string fileName = 4;
int64 int64DeadTime = 5;
bytes fileSha1 = 6;
bytes ext = 7;
}