Files
librespot-spotizerr-dev/proto/explicit_content_pubsub.proto
cool.gitter.not.me.again.duh 92a7a5d84e first commit
2025-05-30 21:28:21 -06:00

16 lines
297 B
Protocol Buffer

syntax = "proto2";
package spotify.explicit_content.proto;
option optimize_for = CODE_SIZE;
option java_package = "com.spotify.explicit";
message KeyValuePair {
required string key = 1;
required string value = 2;
}
message UserAttributesUpdate {
repeated KeyValuePair pairs = 1;
}