cim/doc/Message.proto
夏军 6248ccd569 1消息传输协议使用了Google Protobuf,效率更高
2客户端示例基于Android Studio
3删除了flash sdk,将不再维护flash sdk
4 netty版本升级最新版,以及文档修改
2017-03-17 15:37:44 +08:00

15 lines
332 B
Protocol Buffer

syntax = "proto3";
package com.farsunset.cim.sdk.android.model.proto;
option java_outer_classname="MessageProto";
message Model {
string mid = 1;
string action = 2;
string content = 3;
string sender = 4;
string receiver = 5;
string extra = 6;
string title = 7;
string format = 8;
int64 timestamp = 9;
}