mirror of
https://github.com/status-im/status-web.git
synced 2025-01-20 17:39:09 +00:00
13 lines
248 B
Protocol Buffer
13 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "enums.proto";
|
|
|
|
message PinMessage {
|
|
uint64 clock = 1;
|
|
string message_id = 2;
|
|
string chat_id = 3;
|
|
bool pinned = 4;
|
|
// The type of message (public/one-to-one/private-group-chat)
|
|
MessageType message_type = 5;
|
|
}
|