nim-chat-poc/protos/private_v1.proto
2025-09-09 13:15:09 -07:00

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;
// ....
}
}