Jazz Turner-Baggs 270b97210a
simplify parsing
2025-06-27 09:38:07 -07:00

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;
}
}