chat_proto/proto/wap/inbox.proto
2025-07-11 14:29:11 -07:00

13 lines
199 B
Protocol Buffer

syntax = "proto3";
package wap.inbox;
import "invite.proto";
message InboxV1Frame {
string recipient = 1;
oneof frame_type {
invite.InvitePrivateV1 invite_private_v1 = 10;
}
}