mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
12 lines
198 B
Protocol Buffer
12 lines
198 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;protobuf";
|
|
package protobuf;
|
|
|
|
message ContactUpdate {
|
|
uint64 clock = 1;
|
|
string ens_name = 2;
|
|
string profile_image = 3;
|
|
string display_name = 4;
|
|
}
|