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