mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
20 lines
498 B
Protocol Buffer
20 lines
498 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto;
|
|
|
|
import "context_track.proto";
|
|
import "track_instance.proto";
|
|
import "track_instantiator.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message PlayQueueNode {
|
|
repeated ContextTrack queue = 1;
|
|
optional TrackInstance instance = 2;
|
|
optional TrackInstantiator instantiator = 3;
|
|
optional uint32 next_uid = 4;
|
|
optional sint32 iteration = 5;
|
|
optional bool delay_enqueued_tracks = 6;
|
|
}
|