mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-05-05 16:59:33 +00:00
12 lines
200 B
Protocol Buffer
12 lines
200 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package umbra.inbox;
|
|
|
|
import "invite.proto";
|
|
|
|
message InboxV1Frame {
|
|
string recipient = 1;
|
|
oneof frame_type {
|
|
invite.InvitePrivateV1 invite_private_v1 = 10;
|
|
}
|
|
} |