chat_proto/proto/umbra/conversations/private_v1.proto
2025-06-30 17:03:40 -07:00

23 lines
352 B
Protocol Buffer

syntax = "proto3";
package umbra.convos.private_v1;
import "common_frames.proto";
message Placeholder {
uint32 counter = 1;
}
message PrivateV1Frame {
string conversation_id = 1;
oneof frame_type {
common_frames.ContentFrame content = 10;
Placeholder placeholder = 11;
// ....
}
}