Compare commits

...

2 Commits

Author SHA1 Message Date
joylink_fanyuhong
11fb34d32e Merge branch 'main' of https://gitea.joylink.club/joylink/rtss-proto-msg into main 2024-09-27 14:07:49 +08:00
joylink_fanyuhong
abf6b79605 同步数据类型 2024-09-27 14:07:47 +08:00

View File

@ -0,0 +1,17 @@
syntax = "proto3";
package sync_data_message;
import "common.proto";
//
message SyncData {
String operationType = 1;
repeated UpdataData datas = 2;
}
message UpdataData {
uint32 id = 1;
string type = 2;
bytes data = 3;
}