chat_proto/protos/inbox.proto

18 lines
267 B
Protocol Buffer
Raw Normal View History

2026-01-06 14:38:56 +08:00
syntax = "proto3";
2026-01-09 10:12:15 +08:00
package logoschat.inbox;
2026-01-06 14:38:56 +08:00
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;
}
}