mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 14:13:10 +00:00
24 lines
432 B
Protocol Buffer
24 lines
432 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wap.convos.private_v1;
|
|
|
|
import "common_frames.proto";
|
|
|
|
|
|
|
|
|
|
message Placeholder {
|
|
uint32 counter = 1;
|
|
}
|
|
|
|
message PrivateV1Frame {
|
|
string conversation_id = 1;
|
|
bytes sender = 2;
|
|
int64 timestamp = 3; // Sender reported timestamp
|
|
oneof frame_type {
|
|
common_frames.ContentFrame content = 10;
|
|
Placeholder placeholder = 11;
|
|
// ....
|
|
}
|
|
}
|