mirror of
https://gitee.com/farsunset/cim.git
synced 2025-07-13 11:59:06 +08:00
15 lines
330 B
Protocol Buffer
15 lines
330 B
Protocol Buffer
syntax = "proto3";
|
|
package com.farsunset.cim.sdk.android.model.proto;
|
|
option java_outer_classname="MessageProto";
|
|
message Model {
|
|
int64 id = 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;
|
|
}
|
|
|