mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-02-17 19:43:14 +00:00
16 lines
216 B
Protocol Buffer
16 lines
216 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package logoschat.inbox;
|
|
|
|
import "invite.proto";
|
|
|
|
message Note{
|
|
string text = 1;
|
|
}
|
|
|
|
message InboxV1Frame {
|
|
oneof frame_type {
|
|
invite.InvitePrivateV1 invite_private_v1 = 1;
|
|
}
|
|
}
|