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

19 lines
447 B
Protocol Buffer

syntax = "proto2";
package spotify.player.proto;
option optimize_for = CODE_SIZE;
option java_package = "com.spotify.context";
message ContextPlayerOptions {
optional bool shuffling_context = 1;
optional bool repeating_context = 2;
optional bool repeating_track = 3;
}
message ContextPlayerOptionOverrides {
optional bool shuffling_context = 1;
optional bool repeating_context = 2;
optional bool repeating_track = 3;
}