mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
26 lines
538 B
Protocol Buffer
26 lines
538 B
Protocol Buffer
|
/**
|
||
|
* Copyright (C) 2019 Open Whisper Systems
|
||
|
*
|
||
|
* Licensed according to the LICENSE file in this repository.
|
||
|
*/
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
package signalservice;
|
||
|
|
||
|
option java_package = "org.session.libsignal.service.internal.sticker";
|
||
|
option java_outer_classname = "StickerProtos";
|
||
|
|
||
|
message Pack {
|
||
|
message Sticker {
|
||
|
optional uint32 id = 1;
|
||
|
optional string emoji = 2;
|
||
|
}
|
||
|
|
||
|
optional string title = 1;
|
||
|
optional string author = 2;
|
||
|
optional Sticker cover = 3;
|
||
|
repeated Sticker stickers = 4;
|
||
|
}
|
||
|
|