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