mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-01-05 22:43:08 +00:00
17 lines
326 B
Protocol Buffer
17 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package umbra.convos.inbox;
|
|
|
|
import "proto/umbra/conversations/private_v1.proto";
|
|
|
|
|
|
// Specification: [TODO]
|
|
|
|
message InboxV1Frame {
|
|
string recipient = 1;
|
|
// string conversation_type = 2;
|
|
oneof frame_type {
|
|
convos.private_v1.ConversationInvite_PrivateV1 invite_private_v1 = 10;
|
|
}
|
|
}
|