Files
cool.gitter.not.me.again.duh 92a7a5d84e first commit
2025-05-30 21:28:21 -06:00

14 lines
267 B
Protocol Buffer

syntax = "proto2";
package spotify.player.proto.transfer;
import "context_track.proto";
option optimize_for = CODE_SIZE;
option java_package = "com.spotify.transfer";
message Queue {
repeated ContextTrack tracks = 1;
optional bool is_playing_queue = 2;
}