chat_proto/protos/private_v1.proto

20 lines
384 B
Protocol Buffer
Raw Normal View History

2026-01-06 14:38:56 +08:00
syntax = "proto3";
2026-01-09 10:12:15 +08:00
package logoschat.convos.private_v1;
2026-01-06 14:38:56 +08:00
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;
// ....
}
}