signal-desktop/protos/JumboPack.proto
2024-06-21 15:35:56 -07:00

15 lines
254 B
Protocol Buffer

syntax = "proto3";
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
package signalservice;
message JumbomojiPack {
repeated JumbomojiItem items = 1;
}
message JumbomojiItem {
string name = 1;
bytes image = 2;
}