mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 14:13:10 +00:00
18 lines
261 B
Protocol Buffer
18 lines
261 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wap.inbox;
|
|
|
|
import "invite.proto";
|
|
|
|
message Note{
|
|
string text = 1;
|
|
}
|
|
|
|
message InboxV1Frame {
|
|
string recipient = 1;
|
|
oneof frame_type {
|
|
invite.InvitePrivateV1 invite_private_v1 = 10;
|
|
Note note = 11;
|
|
}
|
|
}
|