29de50c12a
Co-authored-by: scott@signal.org Co-authored-by: ken@signal.org
13 lines
267 B
Protocol Buffer
13 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;
|
|
}
|