mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 05:22:13 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
21 lines
495 B
Protocol Buffer
21 lines
495 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message QREnvelope {
|
|
enum Type {
|
|
PUBLIC_PROFILE = 0;
|
|
}
|
|
Type type = 2;
|
|
bytes data = 3;
|
|
}
|
|
|
|
message PublicProfile {
|
|
int64 user_id = 1;
|
|
string username = 2;
|
|
bytes public_identity_key = 3;
|
|
bytes signed_prekey = 4;
|
|
int64 registration_id = 5;
|
|
bytes signed_prekey_signature = 6;
|
|
int64 signed_prekey_id = 7;
|
|
optional bytes secret_verification_token = 8;
|
|
optional int64 timestamp = 9;
|
|
}
|