14 lines
267 B
Protocol Buffer
14 lines
267 B
Protocol Buffer
|
package signalservice;
|
||
|
|
||
|
message StickerPack {
|
||
|
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;
|
||
|
}
|