mirror of
https://gitee.com/farsunset/cim.git
synced 2025-06-22 19:43:57 +08:00
10 lines
161 B
Protocol Buffer
10 lines
161 B
Protocol Buffer
syntax = "proto3";
|
|
package com.farsunset.cim.sdk.web.model;
|
|
|
|
message SentBody {
|
|
string key = 1;
|
|
int64 timestamp =2;
|
|
map<string,string> data =3;
|
|
|
|
}
|
|
|