mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-23 16:24:08 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
22 lines
No EOL
473 B
Protocol Buffer
22 lines
No EOL
473 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message SharedContact {
|
|
int64 user_id = 1;
|
|
bytes public_identity_key = 2;
|
|
string display_name = 3;
|
|
}
|
|
|
|
message AdditionalMessageData {
|
|
enum Type {
|
|
LINK = 0;
|
|
CONTACTS = 1;
|
|
RESTORED_FLAME_COUNTER = 2;
|
|
ASK_ABOUT_USER = 3;
|
|
}
|
|
Type type = 1;
|
|
|
|
optional string link = 2;
|
|
repeated SharedContact contacts = 3;
|
|
optional int64 restored_flame_counter = 4;
|
|
optional int64 ask_about_user_id = 5;
|
|
} |