nim-chat-poc/protos/inbox.proto

18 lines
261 B
Protocol Buffer
Raw Normal View History

2025-07-05 14:54:19 -07:00
syntax = "proto3";
2025-07-11 14:46:05 -07:00
package wap.inbox;
2025-07-05 14:54:19 -07:00
import "invite.proto";
2025-08-15 07:31:19 -07:00
message Note{
string text = 1;
}
2025-07-05 14:54:19 -07:00
message InboxV1Frame {
string recipient = 1;
oneof frame_type {
invite.InvitePrivateV1 invite_private_v1 = 10;
2025-08-15 07:31:19 -07:00
Note note = 11;
2025-07-05 14:54:19 -07:00
}
}